diff options
| author | Marcel Apfelbaum | 2016-06-27 17:38:33 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin | 2016-07-04 13:50:01 +0200 |
| commit | bf8d492405feaee2c1685b3b9d5e03228ed3e47f (patch) | |
| tree | 213e31e23031a4955217ea1ee49ca58936d03b5d /hw/i386 | |
| parent | hw/pci: delay bus_master_enable_region initialization (diff) | |
| download | qemu-bf8d492405feaee2c1685b3b9d5e03228ed3e47f.tar.gz qemu-bf8d492405feaee2c1685b3b9d5e03228ed3e47f.tar.xz qemu-bf8d492405feaee2c1685b3b9d5e03228ed3e47f.zip | |
q35: allow dynamic sysbus
Allow adding sysbus devices with -device on Q35.
At first Q35 will support only intel-iommu to be added this way,
however the command line will support all sysbus devices.
Mark with 'cannot_instantiate_with_device_add_yet' the ones
causing immediate problems (e.g. crashes).
Signed-off-by: Marcel Apfelbaum <marcel@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/i386')
| -rw-r--r-- | hw/i386/pc_q35.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c index cd57bced1a..fbaf2e6ca2 100644 --- a/hw/i386/pc_q35.c +++ b/hw/i386/pc_q35.c @@ -290,6 +290,7 @@ static void pc_q35_machine_options(MachineClass *m) m->default_machine_opts = "firmware=bios-256k.bin"; m->default_display = "std"; m->no_floppy = 1; + m->has_dynamic_sysbus = true; } static void pc_q35_2_7_machine_options(MachineClass *m) |
