diff options
author | Gleb Natapov <gleb@redhat.com> | 2011-01-30 12:29:18 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-02-01 16:50:44 -0600 |
commit | cf8ce30d03339861a46c31aa44c11279c282f2b0 (patch) | |
tree | 38ef67b79322f29a57bfd0cb660967b0958179aa | |
parent | 363f8cb9bcd308bd03d28e04ea5f5557dea5d5e8 (diff) |
Add bootindex handling into usb storage device.
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r-- | hw/usb-msd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/usb-msd.c b/hw/usb-msd.c index 97d1e4af13..76f5b027b2 100644 --- a/hw/usb-msd.c +++ b/hw/usb-msd.c @@ -532,6 +532,7 @@ static int usb_msd_initfn(USBDevice *dev) } } + add_boot_device_path(s->conf.bootindex, &dev->qdev, "/disk@0,0"); return 0; } @@ -595,6 +596,7 @@ static USBDevice *usb_msd_init(const char *filename) static struct USBDeviceInfo msd_info = { .product_desc = "QEMU USB MSD", .qdev.name = "usb-storage", + .qdev.fw_name = "storage", .qdev.size = sizeof(MSDState), .usb_desc = &desc, .init = usb_msd_initfn, |