0ab97a4010
virtman-default-to-xen-pv.patch - Update to virt-manager 1.0.0 * virt-manager: Snapshot support * New tool virt-xml: Edit libvirt XML in one shot from the command line. Check out some examples: http://www.redhat.com/archives/libvir-list/2014-January/msg01226.html * Improved defaults: qcow2, USB2, host CPU model, guest agent channel, … * Introspect command line options like –disk=? or –network=help * The virt-image tool will be removed before the next release, speak up if you have a good reason not to remove it. * virt-manager: Support arm vexpress VM creation * virt-manager: Add guest memory usage graphs (Thorsten Behrens) * virt-manager: UI for editing devices (Cédric Bosdonnat) * Spice USB redirection support (Guannan Ren) * UI and command line support (Stefan Berger) * UI and command line support (Giuseppe Scrivano) * UI and command line support (Chen Hanxiao) * command line support (Chen Hanxiao) * virt-manager: support for glusterfs storage pools (Giuseppe Scrivano) * cli: New options –memory, –features, –clock, –metadata, –pm * Greatly improve app responsiveness when connecting to remote hosts * Lots of UI cleanup and improvements virt-manager-1.0.0.tar.bz2 - Dropped the following patches by taking a newer upstream tarball virt-manager-0.10.0.tar.bz2 Add-memory-stats-widget-also-to-manager-tree-view.patch Attempt-empty-path-on-virDomainBlockStats.patch Base-mem-statistics-on-virDomainMemoryStats-if-avail.patch virtinst-add-cache-modes.patch virtinst-allow-ide-hdb.patch virtinst-clone-disks.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=143
40 lines
1.5 KiB
Diff
40 lines
1.5 KiB
Diff
Index: virt-manager-0.10.1/virtinst/devicedisk.py
|
|
===================================================================
|
|
--- virt-manager-0.10.1.orig/virtinst/devicedisk.py
|
|
+++ virt-manager-0.10.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-0.10.1/virtinst/virtimage.py
|
|
===================================================================
|
|
--- virt-manager-0.10.1.orig/virtinst/virtimage.py
|
|
+++ virt-manager-0.10.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)))
|