1
0
mirror of https://src.fedoraproject.org/rpms/virt-manager.git synced 2025-07-17 17:44:53 +00:00

Fix 'new vm' regression in the previous build

This commit is contained in:
Cole Robinson
2015-04-18 16:44:23 -04:00
parent abec60a042
commit f75d507344
2 changed files with 29 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
From: Cole Robinson <crobinso@redhat.com>
Date: Sat, 18 Apr 2015 16:42:35 -0400
Subject: [PATCH virt-manager] create: Fix regression in ppc64 enablement patch
---
virtManager/create.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/virtManager/create.py b/virtManager/create.py
index 1600fda..bfc4a0d 100644
--- a/virtManager/create.py
+++ b/virtManager/create.py
@@ -417,7 +417,7 @@ class vmmCreate(vmmGObjectUI):
is_container = self.conn.is_container()
can_remote_url = self.conn.get_backend().support_remote_url_install()
- installable_arch = (self.capsinfo.arch in
+ installable_arch = (self.capsguest.arch in
["i686", "x86_64", "ppc64", "ppc64le", "ia64"])
# Install Options

View File

@@ -28,7 +28,7 @@
Name: virt-manager Name: virt-manager
Version: 1.1.0 Version: 1.1.0
Release: 6.git%{gitcommit}%{_extra_release} Release: 7.git%{gitcommit}%{_extra_release}
%define verrel %{version}-%{release} %define verrel %{version}-%{release}
Summary: Virtual Machine Manager Summary: Virtual Machine Manager
@@ -67,6 +67,8 @@ Patch0011: 0011-domcapabilities-Can-and-log-error-fetching-XML-bz-12.patch
Patch0012: 0012-addhardware-Allow-SATA-CDROM-bz-1207834.patch Patch0012: 0012-addhardware-Allow-SATA-CDROM-bz-1207834.patch
Patch0013: 0013-guest-Use-sata-by-default-for-q35-cdrom-non-virtio-b.patch Patch0013: 0013-guest-Use-sata-by-default-for-q35-cdrom-non-virtio-b.patch
Patch0014: 0014-addhardware-Don-t-advertise-IDE-for-Q35-bz-1207834.patch Patch0014: 0014-addhardware-Don-t-advertise-IDE-for-Q35-bz-1207834.patch
# Fix 'new vm' regression in the previous build
Patch0015: 0015-create-Fix-regression-in-ppc64-enablement-patch.patch
Requires: virt-manager-common = %{verrel} Requires: virt-manager-common = %{verrel}
@@ -161,6 +163,8 @@ machine).
%patch0012 -p1 %patch0012 -p1
%patch0013 -p1 %patch0013 -p1
%patch0014 -p1 %patch0014 -p1
# Fix 'new vm' regression in the previous build
%patch0015 -p1
%build %build
%if %{qemu_user} %if %{qemu_user}
@@ -266,6 +270,9 @@ fi
%changelog %changelog
* Sat Apr 18 2015 Cole Robinson <crobinso@redhat.com> - 1.1.0-7.git310f6527
- Fix 'new vm' regression in the previous build
* Mon Apr 13 2015 Cole Robinson <crobinso@redhat.com> - 1.1.0-6.git310f6527 * Mon Apr 13 2015 Cole Robinson <crobinso@redhat.com> - 1.1.0-6.git310f6527
- sshtunnels: Don't use socket API for fd passed to spice (bz #1135808) - sshtunnels: Don't use socket API for fd passed to spice (bz #1135808)
- Fix available install options for qemu ppc64le (bz #1209720) - Fix available install options for qemu ppc64le (bz #1209720)