- Fix kvm installs defaulting to qemu instead of kvm.

virtman-allow-pv-iso-install.patch

OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=121
This commit is contained in:
Charles Arnold 2013-07-22 23:35:08 +00:00 committed by Git OBS Bridge
parent b822a131f8
commit a7efa17af2
3 changed files with 11 additions and 7 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Jul 22 12:25:16 MDT 2013 - carnold@suse.com
- Fix kvm installs defaulting to qemu instead of kvm.
virtman-allow-pv-iso-install.patch
-------------------------------------------------------------------
Wed Jul 17 14:48:48 MDT 2013 - carnold@suse.com

View File

@ -15,6 +15,7 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define gsysconfdir /etc
%define gconftool /usr/bin/gconftool-2
%define virtinst_maj 0

View File

@ -2,7 +2,7 @@ Index: virt-manager-0.9.5/src/virtManager/create.py
===================================================================
--- virt-manager-0.9.5.orig/src/virtManager/create.py
+++ virt-manager-0.9.5/src/virtManager/create.py
@@ -686,8 +686,13 @@ class vmmCreate(vmmGObjectUI):
@@ -686,11 +686,18 @@ class vmmCreate(vmmGObjectUI):
default = len(model)
if gtype == "xen":
@ -17,11 +17,8 @@ Index: virt-manager-0.9.5/src/virtManager/create.py
sensitive = False
tooltip = _("Only URL or import installs are supported "
"for paravirt.")
@@ -700,6 +705,7 @@ class vmmCreate(vmmGObjectUI):
util.tooltip_wrapper(hv_info, tooltip)
else:
hv_info.hide()
+ default = 0
+ else:
+ default = 0
hv_list.set_active(default)
model.append([label, gtype, domtype, sensitive])