From 33cd52b5d7b9adfd009e95f07e6c64dd88ae2a31 Mon Sep 17 00:00:00 2001 From: Alexander Graf Date: Tue, 1 Jul 2014 16:14:41 +0200 Subject: sysbus: Make devices spawnable via -device Now that we can properly map sysbus devices that haven't been connected to something forcefully by C code, we can allow the -device command line option to spawn them. For machines that don't implement dynamic sysbus assignment in their board files we add a new bool "has_dynamic_sysbus" to the machine class. When that property is false (default), we bail out when we see dynamically spawned sysbus devices, like we did before. Signed-off-by: Alexander Graf --- vl.c | 1 + 1 file changed, 1 insertion(+) (limited to 'vl.c') diff --git a/vl.c b/vl.c index 8999f36..f4a6e5e 100644 --- a/vl.c +++ b/vl.c @@ -1441,6 +1441,7 @@ static void machine_class_init(ObjectClass *oc, void *data) mc->no_floppy = qm->no_floppy; mc->no_cdrom = qm->no_cdrom; mc->no_sdcard = qm->no_sdcard; + mc->has_dynamic_sysbus = qm->has_dynamic_sysbus; mc->is_default = qm->is_default; mc->default_machine_opts = qm->default_machine_opts; mc->default_boot_order = qm->default_boot_order; -- cgit v1.1