59b2222711
bsc#1192238 [Build58.2][KVM] The latest supported OracleLinux as guest versions are not included anywhere add-missing-oracle-linux-versions.patch - bsc#1188223 - L3: Sles12sp3 DomU won't boot after adding phys hard drive virtinst-xenbus-disk-index-fix.patch - jsc#SLE-21540 Dev: Prefer UEFI when creating new virtual machines. Add a preferences option to allow users to default to UEFI when creating a new VM. Libvirt decides which firmware file to use. virtman-add-firmware-preferences.patch - Renamed patch virtinst-modify-gui-defaults.patch to virtman-modify-gui-defaults.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=551
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.2.0/virtManager/createvm.py
|
|
===================================================================
|
|
--- virt-manager-3.2.0.orig/virtManager/createvm.py
|
|
+++ virt-manager-3.2.0/virtManager/createvm.py
|
|
@@ -864,11 +864,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",
|