| Submitter | jordan.l.justen@intel.com |
|---|---|
| Date | Jan. 8, 2012, 7:51 p.m. |
| Message ID | <1326052300-1172-2-git-send-email-jordan.l.justen@intel.com> |
| Download | mbox | patch |
| Permalink | /patch/134924/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/blockdev.c b/blockdev.c index c832782..2d1b8f7 100644 --- a/blockdev.c +++ b/blockdev.c @@ -557,7 +557,8 @@ DriveInfo *drive_init(QemuOpts *opts, int default_to_scsi) /* CDROM is fine for any interface, don't check. */ ro = 1; } else if (ro == 1) { - if (type != IF_SCSI && type != IF_VIRTIO && type != IF_FLOPPY && type != IF_NONE) { + if (type != IF_SCSI && type != IF_VIRTIO && type != IF_FLOPPY && + type != IF_NONE && type != IF_PFLASH) { error_report("readonly not supported by this bus type"); goto err; }
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> --- blockdev.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)