summaryrefslogtreecommitdiff
path: root/vl.c
diff options
context:
space:
mode:
authorPaul Brook <paul@codesourcery.com>2009-05-14 22:35:06 +0100
committerPaul Brook <paul@codesourcery.com>2009-05-14 22:35:06 +0100
commitaae9460e244c7abe70b72ff374b3aa102bb09691 (patch)
treeaeed206df23f689a13c332ac9831e382a684dd57 /vl.c
parent019d6b8ff0d495ded6977f24a4e8fd1c7fec09e0 (diff)
downloadqemu-aae9460e244c7abe70b72ff374b3aa102bb09691.tar.gz
Basic qdev infrastructure.
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'vl.c')
-rw-r--r--vl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/vl.c b/vl.c
index b43cdd1642..40b1d8bf49 100644
--- a/vl.c
+++ b/vl.c
@@ -2565,6 +2565,8 @@ int drive_init(struct drive_opt *arg, int snapshot, void *opaque)
case IF_MTD:
case IF_VIRTIO:
break;
+ case IF_COUNT:
+ abort();
}
if (!file[0])
return -2;
@@ -5896,6 +5898,8 @@ int main(int argc, char **argv, char **envp)
}
}
+ module_call_init(MODULE_INIT_DEVICE);
+
machine->init(ram_size, boot_devices,
kernel_filename, kernel_cmdline, initrd_filename, cpu_model);