mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
machine: use QAPI struct for boot configuration
As part of converting -boot to a property with a QAPI type, define the struct and use it throughout QEMU to access boot configuration. machine_boot_parse takes care of doing the QemuOpts->QAPI conversion by hand, for now. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <20220414165300.555321-2-pbonzini@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
70be1d93f9
commit
97ec4d21e0
18 changed files with 127 additions and 82 deletions
|
@ -1050,7 +1050,7 @@ static void sun4m_hw_init(MachineState *machine)
|
|||
machine->ram_size, &initrd_size);
|
||||
|
||||
nvram_init(nvram, (uint8_t *)&nd->macaddr, machine->kernel_cmdline,
|
||||
machine->boot_order, machine->ram_size, kernel_size,
|
||||
machine->boot_config.order, machine->ram_size, kernel_size,
|
||||
graphic_width, graphic_height, graphic_depth,
|
||||
hwdef->nvram_machine_id, "Sun4m");
|
||||
|
||||
|
@ -1091,7 +1091,7 @@ static void sun4m_hw_init(MachineState *machine)
|
|||
}
|
||||
fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, INITRD_LOAD_ADDR);
|
||||
fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size);
|
||||
fw_cfg_add_i16(fw_cfg, FW_CFG_BOOT_DEVICE, machine->boot_order[0]);
|
||||
fw_cfg_add_i16(fw_cfg, FW_CFG_BOOT_DEVICE, machine->boot_config.order[0]);
|
||||
qemu_register_boot_set(fw_cfg_boot_set, fw_cfg);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue