d08c00befd
virt-manager-3.1.0.tar.bz2 - Drop patches contained in new tarball ba08f84b-addstorage-Return-to-using-qcow2-sparse-by-default.patch a010c49b-cli-Fix-os-variant-help-introspection.patch 79ebcbcb-viewers-Fix-spice-audio.patch e5a51f63-details-Change-Close-accelerator-to-ctrl+shift+w.patch 9c13d2f8-Remove-use-of-problematic-terminology.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=513
20 lines
841 B
Diff
20 lines
841 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-3.1.0/virtManager/createvm.py
|
|
===================================================================
|
|
--- virt-manager-3.1.0.orig/virtManager/createvm.py
|
|
+++ virt-manager-3.1.0/virtManager/createvm.py
|
|
@@ -861,11 +861,6 @@ class vmmCreateVM(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",
|