1
0
mirror of https://src.fedoraproject.org/rpms/virt-manager.git synced 2025-07-16 01:03:36 +00:00
Files
virt-manager/0010-create-Show-proper-install-options-for-ppc64le-bz-12.patch
Cole Robinson abec60a042 sshtunnels: Don't use socket API for fd passed to spice (bz #1135808)
Fix available install options for qemu ppc64le (bz #1209720)
Catch errors fetching domcapabilities, fix ppc64le details (bz #1209723)
Improve disk defaults for qemu -M q35 (bz #1207834)
2015-04-13 18:37:47 -04:00

35 lines
1.3 KiB
Diff

From: Cole Robinson <crobinso@redhat.com>
Date: Wed, 8 Apr 2015 09:31:07 -0400
Subject: [PATCH virt-manager] create: Show proper install options for ppc64le
(bz 1209720)
(cherry picked from commit 68a11727a49f7c07bc3fbf14a71b65edb53a8dd7)
---
virtManager/create.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/virtManager/create.py b/virtManager/create.py
index 0f9bdaa..1600fda 100644
--- a/virtManager/create.py
+++ b/virtManager/create.py
@@ -417,8 +417,8 @@ class vmmCreate(vmmGObjectUI):
is_container = self.conn.is_container()
can_remote_url = self.conn.get_backend().support_remote_url_install()
- installable_arch = (self.capsguest.arch in
- ["i686", "x86_64", "ppc64", "ia64"])
+ installable_arch = (self.capsinfo.arch in
+ ["i686", "x86_64", "ppc64", "ppc64le", "ia64"])
# Install Options
method_tree = self.widget("method-tree")
@@ -680,7 +680,7 @@ class vmmCreate(vmmGObjectUI):
archs.remove("i686")
archs.sort()
- prios = ["x86_64", "i686", "armv7l", "ppc64"]
+ prios = ["x86_64", "i686", "armv7l", "ppc64", "ppc64le"]
if self.conn.caps.host.cpu.arch not in prios:
prios = []
else: