virt-manager/virtman-cdrom.diff
Charles Arnold 4ad8024558 - Update to virt-manager 0.8.6
* SPICE support (requires spice-gtk) (Marc-André Lureau)
  * Option to configure CPU model
  * Option to configure CPU topology
  * Save and migration cancellation (Wen Congyang)
  * Save and migration progress reporting
  * Option to enable bios boot menu
  * Option to configure direct kernel/initrd boot
- Update to virtinst 0.500.5
  * New virt-install --cpu option for configuring CPU 
    model/features
  * virt-install --vcpus option can not specify topology and 
    maxvcpus
  * New virt-install --graphics option to unify --vnc, --sdl, 
    spice config
  * New virt-install --print-xml option to skip install and print 
    XML

OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=48
2011-03-21 19:38:43 +00:00

13 lines
680 B
Diff

Index: virt-manager-0.8.6/src/virtManager/addhardware.py
===================================================================
--- virt-manager-0.8.6.orig/src/virtManager/addhardware.py
+++ virt-manager-0.8.6/src/virtManager/addhardware.py
@@ -480,6 +480,7 @@ class vmmAddHardware(vmmGObjectUI):
if self.vm.get_hv_type() == "kvm":
add_dev("virtio", virtinst.VirtualDisk.DEVICE_DISK, "Virtio Disk")
if self.vm.get_connection().is_xen():
+ add_dev("xen", virtinst.VirtualDisk.DEVICE_CDROM, "Virtual disk (read only)")
add_dev("xen", virtinst.VirtualDisk.DEVICE_DISK, "Virtual disk")
def populate_input_model(self, model):