diff options
author | Paolo Bonzini | 2022-04-14 18:52:57 +0200 |
---|---|---|
committer | Paolo Bonzini | 2022-05-12 12:29:43 +0200 |
commit | 8c4da4b52186e9d0c7233b0ffc796e78fdf3e7b3 (patch) | |
tree | 377466afffcfdc86773fdc23e93e843566c82070 /include/hw/boards.h | |
parent | machine: use QAPI struct for boot configuration (diff) | |
download | qemu-8c4da4b52186e9d0c7233b0ffc796e78fdf3e7b3.tar.gz qemu-8c4da4b52186e9d0c7233b0ffc796e78fdf3e7b3.tar.xz qemu-8c4da4b52186e9d0c7233b0ffc796e78fdf3e7b3.zip |
machine: add boot compound property
Make -boot syntactic sugar for a compound property "-machine boot.{order,menu,...}".
machine_boot_parse is replaced by the setter for the property.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20220414165300.555321-3-pbonzini@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/hw/boards.h')
-rw-r--r-- | include/hw/boards.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/hw/boards.h b/include/hw/boards.h index 6cda7e4308..910c3ffde2 100644 --- a/include/hw/boards.h +++ b/include/hw/boards.h @@ -26,7 +26,6 @@ OBJECT_DECLARE_TYPE(MachineState, MachineClass, MACHINE) extern MachineState *current_machine; void machine_run_board_init(MachineState *machine); -void machine_boot_parse(MachineState *ms, QemuOpts *opts, Error **errp); bool machine_usb(MachineState *machine); int machine_phandle_start(MachineState *machine); bool machine_dump_guest_core(MachineState *machine); |