diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2011-11-18 16:32:02 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2011-11-22 10:33:30 +0100 |
commit | 28b77657cfb44cdcc379997340701d73432b9007 (patch) | |
tree | a6f0283288818686be06888e6bb6cc96c6841dc2 | |
parent | 795928f61daff10b06bb21e837bc5bf0227cf076 (diff) |
scsi-generic: add as boot device
There is no reason why a scsi-generic device cannot boot if it has
the right type, and indeed it provides already a bootindex property.
So register those devices too.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r-- | hw/scsi-generic.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/scsi-generic.c b/hw/scsi-generic.c index 9594cc1276..e62044f395 100644 --- a/hw/scsi-generic.c +++ b/hw/scsi-generic.c @@ -413,6 +413,10 @@ static int scsi_generic_initfn(SCSIDevice *s) /* define device state */ s->type = scsiid.scsi_type; DPRINTF("device type %d\n", s->type); + if (s->type == TYPE_DISK || s->type == TYPE_ROM) { + add_boot_device_path(s->conf.bootindex, &s->qdev, NULL); + } + switch (s->type) { case TYPE_TAPE: s->blocksize = get_stream_blocksize(s->conf.bs); @@ -459,6 +463,7 @@ static SCSIRequest *scsi_new_request(SCSIDevice *d, uint32_t tag, uint32_t lun, static SCSIDeviceInfo scsi_generic_info = { .qdev.name = "scsi-generic", + .qdev.fw_name = "disk", .qdev.desc = "pass through generic scsi device (/dev/sg*)", .qdev.size = sizeof(SCSIDevice), .qdev.reset = scsi_generic_reset, |