c7dfc18daa
8dbe96fc-add-s390x-arch-support.patch virtman-s390x-dont-add-graphics-support.patch Drop virtman-add-s390x-arch-support.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=259
20 lines
832 B
Diff
20 lines
832 B
Diff
References: bsc#919692
|
|
Because openSUSE repos combine 32 and 64 bit sources we need to
|
|
continue showing the 'Architecture' pop-up.
|
|
Index: virt-manager-1.2.1/virtManager/create.py
|
|
===================================================================
|
|
--- virt-manager-1.2.1.orig/virtManager/create.py
|
|
+++ virt-manager-1.2.1/virtManager/create.py
|
|
@@ -689,11 +689,6 @@ class vmmCreate(vmmGObjectUI):
|
|
for guest in self.conn.caps.guests:
|
|
if guest.os_type == self.capsinfo.os_type:
|
|
archs.append(guest.arch)
|
|
-
|
|
- # Combine x86/i686 to avoid confusion
|
|
- if (self.conn.caps.host.cpu.arch == "x86_64" and
|
|
- "x86_64" in archs and "i686" in archs):
|
|
- archs.remove("i686")
|
|
archs.sort()
|
|
|
|
prios = ["x86_64", "i686", "aarch64", "armv7l", "ppc64", "ppc64le",
|