249172acaf
and virt-viewer after creating a snapshot. - Update to virt-manager 0.8.4 * Import install option: create a VM using an existing OS image * Support multiple boot devices and boot order * Watchdog device support * Enable setting a human readable VM description. * Option to manually specifying a bridge name, if bridge isn't detected - Update to virtinst 0.500.3 * virt-install: New --watchdog option: configure a virtual watchdog dev * virt-install: New --soundhw option: More flexible sound configuration deprecates --sound, though back compat is maintained * virt-install: New --security option: configure VM security driver * virt-install: New --description option: set a human readable desc * Better OS defaults: Use <video> VGA and <sound> AC97 if support OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=23
13 lines
683 B
Diff
13 lines
683 B
Diff
Index: virt-manager-0.8.4/src/virtManager/addhardware.py
|
|
===================================================================
|
|
--- virt-manager-0.8.4.orig/src/virtManager/addhardware.py
|
|
+++ virt-manager-0.8.4/src/virtManager/addhardware.py
|
|
@@ -464,6 +464,7 @@ class vmmAddHardware(gobject.GObject):
|
|
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):
|