提交 084a197a 编写于 作者: B blueswir1

Add UUID to firmware configuration info (Gleb Natapov)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5259 c046a42c-6fe2-441c-8c8c-71466251a162
上级 f1f23ad5
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
* THE SOFTWARE. * THE SOFTWARE.
*/ */
#include "hw.h" #include "hw.h"
#include "sysemu.h"
#include "isa.h" #include "isa.h"
#include "fw_cfg.h" #include "fw_cfg.h"
...@@ -281,6 +282,7 @@ void *fw_cfg_init(uint32_t ctl_port, uint32_t data_port, ...@@ -281,6 +282,7 @@ void *fw_cfg_init(uint32_t ctl_port, uint32_t data_port,
cpu_register_physical_memory(data_addr, FW_CFG_SIZE, io_data_memory); cpu_register_physical_memory(data_addr, FW_CFG_SIZE, io_data_memory);
} }
fw_cfg_add_bytes(s, FW_CFG_SIGNATURE, (uint8_t *)"QEMU", 4); fw_cfg_add_bytes(s, FW_CFG_SIGNATURE, (uint8_t *)"QEMU", 4);
fw_cfg_add_bytes(s, FW_CFG_UUID, qemu_uuid, 16);
register_savevm("fw_cfg", -1, 1, fw_cfg_save, fw_cfg_load, s); register_savevm("fw_cfg", -1, 1, fw_cfg_save, fw_cfg_load, s);
qemu_register_reset(fw_cfg_reset, s); qemu_register_reset(fw_cfg_reset, s);
fw_cfg_reset(s); fw_cfg_reset(s);
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
#define FW_CFG_SIGNATURE 0x00 #define FW_CFG_SIGNATURE 0x00
#define FW_CFG_ID 0x01 #define FW_CFG_ID 0x01
#define FW_CFG_UUID 0x02
#define FW_CFG_MAX_ENTRY 0x10 #define FW_CFG_MAX_ENTRY 0x10
#define FW_CFG_WRITE_CHANNEL 0x4000 #define FW_CFG_WRITE_CHANNEL 0x4000
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册