diff --git a/virt-manager.changes b/virt-manager.changes index 078e99ee..f624fa58 100644 --- a/virt-manager.changes +++ b/virt-manager.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Wed Feb 20 10:10:13 MST 2019 - carnold@suse.com + +- Temporarily disable Xen PVH support until feature is more usable + (fate#326698) + virtinst-add-pvh-support.patch + ------------------------------------------------------------------- Tue Feb 12 13:34:26 MST 2019 - carnold@suse.com diff --git a/virtinst-add-pvh-support.patch b/virtinst-add-pvh-support.patch index 4bdf76f3..a8ca2f5f 100644 --- a/virtinst-add-pvh-support.patch +++ b/virtinst-add-pvh-support.patch @@ -1,5 +1,20 @@ References: fate#326698 - Add pvh support to virt-manager +At this time support is disabled in this patch. +Index: virt-manager-2.1.0/virtManager/create.py +=================================================================== +--- virt-manager-2.1.0.orig/virtManager/create.py ++++ virt-manager-2.1.0/virtManager/create.py +@@ -739,6 +739,9 @@ class vmmCreate(vmmGObjectUI): + for guest in guests: + if not guest.domains: + continue ++ # xenpvh is currently unsupported ++ if guest.os_type == "xenpvh": ++ continue + + gtype = guest.os_type + dom = guest.domains[0] Index: virt-manager-2.1.0/virtinst/domain/os.py =================================================================== --- virt-manager-2.1.0.orig/virtinst/domain/os.py diff --git a/virtman-allow-creating-i686-vm.patch b/virtman-allow-creating-i686-vm.patch index e5f73ba4..429f6cad 100644 --- a/virtman-allow-creating-i686-vm.patch +++ b/virtman-allow-creating-i686-vm.patch @@ -1,11 +1,11 @@ References: bsc#919692 Because openSUSE repos combine 32 and 64 bit sources we need to continue showing the 'Architecture' pop-up. -Index: virt-manager-2.0.0/virtManager/create.py +Index: virt-manager-2.1.0/virtManager/create.py =================================================================== ---- virt-manager-2.0.0.orig/virtManager/create.py -+++ virt-manager-2.0.0/virtManager/create.py -@@ -774,11 +774,6 @@ class vmmCreate(vmmGObjectUI): +--- virt-manager-2.1.0.orig/virtManager/create.py ++++ virt-manager-2.1.0/virtManager/create.py +@@ -777,11 +777,6 @@ class vmmCreate(vmmGObjectUI): for guest in self.conn.caps.guests: if guest.os_type == self._capsinfo.os_type: archs.append(guest.arch) diff --git a/virtman-python2-to-python3-conversion.patch b/virtman-python2-to-python3-conversion.patch index 9df3ed37..cbe18742 100644 --- a/virtman-python2-to-python3-conversion.patch +++ b/virtman-python2-to-python3-conversion.patch @@ -221,7 +221,7 @@ Index: virt-manager-2.1.0/virtManager/create.py ##################### -@@ -2156,7 +2156,7 @@ class vmmCreate(vmmGObjectUI): +@@ -2159,7 +2159,7 @@ class vmmCreate(vmmGObjectUI): 'insecure': self._get_config_oscontainer_isecure, 'root_password': self._get_config_oscontainer_root_password, }