a18ef09a88
virtinst-add-default-rng-device.patch - Fix GUI failure to display addition of a second disk Dropped virtman-device-flags.patch - bnc#885380 - virt-install: by default generates raw format against various virtual disk formats virtinst-supported-disk-formats.patch virtman-supported-disk-formats.patch - Dropped virtinst-qed.patch, virtman-qed.patch - bnc#869026 - Build0198: Unable to complete install: 'XML error: No PCI buses available' virtman-add-s390x-arch-support.patch - Upstream bug fixes 53ac1f8d-createnet-validate-last-page-before-creating-network.patch 53ac1f8d-fix-show_err-typo.patch 53b39a13-dont-create-disk-images-world-readable-executable.patch 53b409bc-add-keep-alive-method-and-connection-check.patch 53b409bd-console-prevent-access-to-deleted-objects.patch 53b728c6-report-error-during-connection-bring-up.patch 53b728c6-connection-handle-unsupported-KeepAlive.patch 53bb1995-network-refresh-XML-definition-on-state-update.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=188
29 lines
984 B
Diff
29 lines
984 B
Diff
Reference: bnc#813082
|
|
|
|
Index: virt-manager-1.0.1/virtinst/devicedisk.py
|
|
===================================================================
|
|
--- virt-manager-1.0.1.orig/virtinst/devicedisk.py
|
|
+++ virt-manager-1.0.1/virtinst/devicedisk.py
|
|
@@ -558,6 +558,12 @@ class VirtualDisk(VirtualDevice):
|
|
return None
|
|
if self.conn.is_qemu():
|
|
return self.DRIVER_QEMU
|
|
+ else:
|
|
+ drvtypes = ['qcow2', 'vmdk']
|
|
+ if self.type in drvtypes:
|
|
+ return 'tap'
|
|
+ else:
|
|
+ return self.DRIVER_QEMU
|
|
return None
|
|
|
|
def _get_default_driver_type(self):
|
|
@@ -571,6 +577,8 @@ class VirtualDisk(VirtualDevice):
|
|
http://lists.gnu.org/archive/html/qemu-devel/2008-04/msg00675.html
|
|
"""
|
|
if self.driver_name != self.DRIVER_QEMU:
|
|
+ if self.driver_name and self.type != 'file':
|
|
+ return self.type
|
|
return None
|
|
|
|
if self._storage_creator:
|