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
53 lines
2.2 KiB
Diff
53 lines
2.2 KiB
Diff
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
|
|
@@ -156,10 +156,11 @@ class VirtualDisk(VirtualDevice):
|
|
|
|
DRIVER_TAP_RAW = "aio"
|
|
DRIVER_TAP_QCOW = "qcow"
|
|
+ DRIVER_TAP_QED = "qed"
|
|
DRIVER_TAP_VMDK = "vmdk"
|
|
DRIVER_TAP_VDISK = "vdisk"
|
|
driver_types = [DRIVER_TAP_RAW, DRIVER_TAP_QCOW,
|
|
- DRIVER_TAP_VMDK, DRIVER_TAP_VDISK]
|
|
+ DRIVER_TAP_QED, DRIVER_TAP_VMDK, DRIVER_TAP_VDISK]
|
|
|
|
CACHE_MODE_NONE = "none"
|
|
CACHE_MODE_WRITETHROUGH = "writethrough"
|
|
Index: virt-manager-1.0.1/virtinst/virtimage.py
|
|
===================================================================
|
|
--- virt-manager-1.0.1.orig/virtinst/virtimage.py
|
|
+++ virt-manager-1.0.1/virtinst/virtimage.py
|
|
@@ -209,6 +209,7 @@ class Disk(object):
|
|
FORMAT_QCOW2 = "qcow2"
|
|
FORMAT_VMDK = "vmdk"
|
|
FORMAT_VDI = "vdi"
|
|
+ FORMAT_QED = "qed"
|
|
|
|
USE_SYSTEM = "system"
|
|
USE_USER = "user"
|
|
@@ -240,7 +241,8 @@ class Disk(object):
|
|
Disk.FORMAT_QCOW2,
|
|
Disk.FORMAT_VMDK,
|
|
Disk.FORMAT_ISO,
|
|
- Disk.FORMAT_VDI]
|
|
+ Disk.FORMAT_VDI,
|
|
+ Disk.FORMAT_QED]
|
|
validate(formats.count(self.format) > 0,
|
|
_("The format for disk %s must be one of %s") %
|
|
(self.file, ",".join(formats)))
|
|
Index: virt-manager-1.0.1/virtinst/support.py
|
|
===================================================================
|
|
--- virt-manager-1.0.1.orig/virtinst/support.py
|
|
+++ virt-manager-1.0.1/virtinst/support.py
|
|
@@ -258,7 +258,7 @@ SUPPORT_CONN_DISK_SD = _make(version="1.
|
|
# default to qcow2. It might be fine for xen or qemu older than the versions
|
|
# here, but until someone tests things I'm going to be a bit conservative.
|
|
SUPPORT_CONN_DEFAULT_QCOW2 = _make(
|
|
- version="0.8.0", hv_version={"qemu": "1.2.0", "test": 0})
|
|
+ version="0.8.0", hv_version={"qemu": "1.2.0", "all": 0})
|
|
SUPPORT_CONN_DEFAULT_USB2 = _make(
|
|
version="0.9.7", hv_version={"qemu": "1.0.0", "test": 0})
|
|
SUPPORT_CONN_CAN_ACPI = _make(hv_version={"xen": "3.1.0", "all": 0})
|