Compare commits

...
Sign in to create a new pull request.

4 commits

Author SHA1 Message Date
Cole Robinson
187a16d295 Fix 'Add Hardware' wizard for non-x86 guests (bz #1505532) 2017-11-21 18:12:11 -05:00
Cole Robinson
3adf2cd145 Rebased to version 1.4.3
Improve install of debian/ubuntu non-x86 media (Viktor Mihajlovski, Andrew Wong)
New virt-install --graphics listen.* (Pavel Hrdina)
New virt-install --disk snapshot_policy= (Pavel Hrdina)
New virt-install --cpu cache.* (Lin Ma)
Several bug fixes
2017-09-19 20:16:08 -04:00
Cole Robinson
80dbffe74b Rebased to version 1.4.2
New VM wixard virt-bootstrap integration (Radostin Stoyanov)
New VM wizard support for virtuozzo containers (Mikhail Feoktistov)
network UI: add support to create SR-IOV VF pool (Lin Ma)
Nicer OS list in New VM wizard (Pino Toscano)
Better defaults for UEFI secureboot builds (Pavel Hrdina)
Fix defaults for aarch64 VMs if graphics are requested
virt-install: new --memdev option (Pavel Hrdina)
virt-install: add --disk logical/physical_block_size (Yuri Arabadji)
virt-install: add --features hyperv_reset=, hyperv_synic= (Venkat Datta N H)
2017-08-09 11:08:01 -04:00
Cole Robinson
d658e99288 Fix broken it/ko translations (bz #1433800) 2017-03-22 10:46:19 -04:00
3 changed files with 71 additions and 3 deletions

View file

@ -0,0 +1,34 @@
From: Cole Robinson <crobinso@redhat.com>
Date: Fri, 27 Oct 2017 09:42:54 +0200
Subject: [PATCH virt-manager] devicepanic: Don't return empty model list (bz
#1505532)
Callers don't expect it, and it breaks opening the addhardware dialog
for aarch64 VMs
https://bugzilla.redhat.com/show_bug.cgi?id=1505532
(cherry picked from commit f7c8cf9f667f2b0122f5689009d74c94c38c7316)
---
virtinst/devicepanic.py | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/virtinst/devicepanic.py b/virtinst/devicepanic.py
index 63a88f71..9f44e93e 100644
--- a/virtinst/devicepanic.py
+++ b/virtinst/devicepanic.py
@@ -49,12 +49,13 @@ class VirtualPanicDevice(VirtualDevice):
@staticmethod
def get_models(os):
if os.is_x86():
- return [VirtualPanicDevice.MODEL_ISA, VirtualPanicDevice.MODEL_HYPERV]
+ return [VirtualPanicDevice.MODEL_ISA,
+ VirtualPanicDevice.MODEL_HYPERV]
elif os.is_pseries():
return [VirtualPanicDevice.MODEL_PSERIES]
elif os.is_s390x():
return [VirtualPanicDevice.MODEL_S390]
- return None
+ return []
@staticmethod
def get_default_model(os):

View file

@ -1 +1 @@
SHA512 (virt-manager-1.4.1.tar.gz) = ea4cdc16d7adecdb85431fdfbe7305518917b7d66342375b6773462d33d5647c2a4d3f054c08cd44d7c4e7785da92e38b18881a422083e82303b5a3dbd7b4cdd
SHA512 (virt-manager-1.4.3.tar.gz) = 007f125503fc2c774beefc8047ca2c36aa7177af40d9bc78fa3448fd50d4d35abd4a1dbbf761a8cd538fdf6541eba46c2cd019ba3ff0c7e29b1944d873b74274

View file

@ -19,8 +19,8 @@
# End local config
Name: virt-manager
Version: 1.4.1
Release: 1%{?dist}
Version: 1.4.3
Release: 2%{?dist}
%global verrel %{version}-%{release}
Summary: Desktop tool for managing virtual machines via libvirt
@ -30,6 +30,9 @@ BuildArch: noarch
URL: http://virt-manager.org/
Source0: http://virt-manager.org/download/sources/%{name}/%{name}-%{version}.tar.gz
# Fix 'Add Hardware' wizard for non-x86 guests (bz #1505532)
Patch0001: 0001-devicepanic-Don-t-return-empty-model-list-bz-1505532.patch
Requires: virt-manager-common = %{verrel}
Requires: pygobject3
@ -108,6 +111,9 @@ machine).
%prep
%setup -q
# Fix 'Add Hardware' wizard for non-x86 guests (bz #1505532)
%patch0001 -p1
%build
%if %{qemu_user}
@ -230,6 +236,34 @@ fi
%changelog
* Tue Nov 21 2017 Cole Robinson <crobinso@redhat.com> - 1.4.3-2
- Fix 'Add Hardware' wizard for non-x86 guests (bz #1505532)
* Tue Sep 19 2017 Cole Robinson <crobinso@redhat.com> - 1.4.3-1
- Rebased to version 1.4.3
- Improve install of debian/ubuntu non-x86 media (Viktor Mihajlovski, Andrew
Wong)
- New virt-install --graphics listen.* (Pavel Hrdina)
- New virt-install --disk snapshot_policy= (Pavel Hrdina)
- New virt-install --cpu cache.* (Lin Ma)
- Several bug fixes
* Wed Aug 09 2017 Cole Robinson <crobinso@redhat.com> - 1.4.2-1
- Rebased to version 1.4.2
- New VM wixard virt-bootstrap integration (Radostin Stoyanov)
- New VM wizard support for virtuozzo containers (Mikhail Feoktistov)
- network UI: add support to create SR-IOV VF pool (Lin Ma)
- Nicer OS list in New VM wizard (Pino Toscano)
- Better defaults for UEFI secureboot builds (Pavel Hrdina)
- Fix defaults for aarch64 VMs if graphics are requested
- virt-install: new --memdev option (Pavel Hrdina)
- virt-install: add --disk logical/physical_block_size (Yuri Arabadji)
- virt-install: add --features hyperv_reset=, hyperv_synic= (Venkat Datta N
H)
* Wed Mar 22 2017 Cole Robinson <crobinso@redhat.com> - 1.4.1-2
- Fix broken it/ko translations (bz #1433800)
* Mon Mar 13 2017 Cole Robinson <crobinso@redhat.com> - 1.4.1-1
- Rebased to version 1.4.1
- storage/nodedev event API support (Jovanka Gulicoska)