ae026a575b
* Merged code with python-virtinst. virtinst is no longer public * Port from GTK2 to GTK3 (Daniel Berrange, Cole Robinson) * Port from gconf to gsettings * Port from autotools to python distutils * Remove virt-manager-tui * Remove HAL support * IPv6 and static route virtual network support (Gene Czarcinski) * virt-install: Add –cpu host-passthrough (Ken ICHIKAWA, Hu Tao) OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=129
14 lines
684 B
Diff
14 lines
684 B
Diff
Index: virt-manager-0.10.0/virtManager/addhardware.py
|
|
===================================================================
|
|
--- virt-manager-0.10.0.orig/virtManager/addhardware.py
|
|
+++ virt-manager-0.10.0/virtManager/addhardware.py
|
|
@@ -546,6 +546,8 @@ class vmmAddHardware(vmmGObjectUI):
|
|
add_dev("virtio-scsi", virtinst.VirtualDisk.DEVICE_LUN,
|
|
_("Virtio SCSI lun"))
|
|
if self.conn.is_xen() or self.conn.is_test_conn():
|
|
+ add_dev("xen", virtinst.VirtualDisk.DEVICE_CDROM,
|
|
+ _("Xen Virtual disk (read only)"))
|
|
add_dev("xen", virtinst.VirtualDisk.DEVICE_DISK,
|
|
_("Xen virtual disk"))
|
|
|