add -drive if=none
This adds a host drive, but doesn't implicitly add a guest drive for it.
First step in splitting host and guest configuration, check the
following patches to see how this can be used ...
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Message-Id:
diff --git a/vl.c b/vl.c
index d82c3d8..5bf3051 100644
--- a/vl.c
+++ b/vl.c
@@ -1982,6 +1982,9 @@
} else if (!strcmp(buf, "xen")) {
type = IF_XEN;
max_devs = 0;
+ } else if (!strcmp(buf, "none")) {
+ type = IF_NONE;
+ max_devs = 0;
} else {
fprintf(stderr, "qemu: unsupported bus type '%s'\n", buf);
return NULL;
@@ -2195,6 +2198,7 @@
case IF_PFLASH:
case IF_MTD:
case IF_VIRTIO:
+ case IF_NONE:
break;
case IF_COUNT:
abort();