2015-05-04 22:15:01 +02:00
|
|
|
References: bsc#919692
|
|
|
|
Because openSUSE repos combine 32 and 64 bit sources we need to
|
|
|
|
continue showing the 'Architecture' pop-up.
|
2020-09-16 19:23:41 +02:00
|
|
|
Index: virt-manager-3.0.0/virtManager/createvm.py
|
2015-04-02 00:27:40 +02:00
|
|
|
===================================================================
|
2020-09-16 19:23:41 +02:00
|
|
|
--- virt-manager-3.0.0.orig/virtManager/createvm.py
|
|
|
|
+++ virt-manager-3.0.0/virtManager/createvm.py
|
|
|
|
@@ -862,11 +862,6 @@ class vmmCreateVM(vmmGObjectUI):
|
2015-04-02 00:27:40 +02:00
|
|
|
for guest in self.conn.caps.guests:
|
2015-11-26 00:27:12 +01:00
|
|
|
if guest.os_type == self._capsinfo.os_type:
|
2015-04-02 00:27:40 +02:00
|
|
|
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()
|
|
|
|
|
2015-09-10 21:56:08 +02:00
|
|
|
prios = ["x86_64", "i686", "aarch64", "armv7l", "ppc64", "ppc64le",
|