- bsc#963692 - libvirtError: unsupported configuration: unknown
driver format value 'block' virtinst-xen-drive-type.patch - bsc#963173 - virt-manager - dependencies for VNC client are not met on PPC virt-manager.spec OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=293
This commit is contained in:
parent
9851188d58
commit
946c30ddbd
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 27 11:19:48 MST 2016 - carnold@suse.com
|
||||||
|
|
||||||
|
- bsc#963692 - libvirtError: unsupported configuration: unknown
|
||||||
|
driver format value 'block'
|
||||||
|
virtinst-xen-drive-type.patch
|
||||||
|
- bsc#963173 - virt-manager - dependencies for VNC client are not
|
||||||
|
met on PPC
|
||||||
|
virt-manager.spec
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jan 18 13:43:47 MST 2016 - carnold@suse.com
|
Mon Jan 18 13:43:47 MST 2016 - carnold@suse.com
|
||||||
|
|
||||||
|
@ -121,15 +121,10 @@ Requires: python-ipaddr
|
|||||||
Requires: python-libxml2
|
Requires: python-libxml2
|
||||||
Requires: python-urlgrabber
|
Requires: python-urlgrabber
|
||||||
Requires: typelib(LibvirtGLib)
|
Requires: typelib(LibvirtGLib)
|
||||||
%if 0%{?is_opensuse}
|
|
||||||
BuildRequires: gobject-introspection
|
BuildRequires: gobject-introspection
|
||||||
%else
|
# No AppIndicator package on SLE
|
||||||
Recommends: typelib(AppIndicator3)
|
%if %{?is_opensuse:0}%{!?is_opensuse:1}
|
||||||
Requires: typelib(GVnc)
|
Provides: typelib(AppIndicator3)
|
||||||
Requires: typelib(GtkVnc)
|
|
||||||
Requires: typelib(Libosinfo)
|
|
||||||
Requires: typelib(SpiceClientGtk)
|
|
||||||
Requires: typelib(Vte)
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%description common
|
%description common
|
||||||
|
@ -2,15 +2,17 @@ Reference: bnc#813082
|
|||||||
Virt-manager on Xen doesn't fill in any type thereby defaulting to
|
Virt-manager on Xen doesn't fill in any type thereby defaulting to
|
||||||
'raw'. This patch will generate the correct XML on Xen.
|
'raw'. This patch will generate the correct XML on Xen.
|
||||||
|
|
||||||
Index: virt-manager-1.3.0/virtinst/devicedisk.py
|
Index: virt-manager-1.3.2/virtinst/devicedisk.py
|
||||||
===================================================================
|
===================================================================
|
||||||
--- virt-manager-1.3.0.orig/virtinst/devicedisk.py
|
--- virt-manager-1.3.2.orig/virtinst/devicedisk.py
|
||||||
+++ virt-manager-1.3.0/virtinst/devicedisk.py
|
+++ virt-manager-1.3.2/virtinst/devicedisk.py
|
||||||
@@ -557,6 +557,8 @@ class VirtualDisk(VirtualDevice):
|
@@ -557,6 +557,10 @@ class VirtualDisk(VirtualDevice):
|
||||||
http://lists.gnu.org/archive/html/qemu-devel/2008-04/msg00675.html
|
http://lists.gnu.org/archive/html/qemu-devel/2008-04/msg00675.html
|
||||||
"""
|
"""
|
||||||
if self.driver_name != self.DRIVER_NAME_QEMU:
|
if self.driver_name != self.DRIVER_NAME_QEMU:
|
||||||
+ if self.driver_name and self.type != 'file':
|
+ if self.driver_name and \
|
||||||
|
+ self.driver_name != self.DRIVER_NAME_PHY and \
|
||||||
|
+ self.type != 'file':
|
||||||
+ return self.type
|
+ return self.type
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
@ -6,11 +6,11 @@ types (ide vs xen) it added xvda with hda. These disks were then
|
|||||||
passed to qemu where it error'ed out with the disks having the same
|
passed to qemu where it error'ed out with the disks having the same
|
||||||
index (in this case both are 0).
|
index (in this case both are 0).
|
||||||
|
|
||||||
Index: virt-manager-1.3.0/virtinst/devicedisk.py
|
Index: virt-manager-1.3.2/virtinst/devicedisk.py
|
||||||
===================================================================
|
===================================================================
|
||||||
--- virt-manager-1.3.0.orig/virtinst/devicedisk.py
|
--- virt-manager-1.3.2.orig/virtinst/devicedisk.py
|
||||||
+++ virt-manager-1.3.0/virtinst/devicedisk.py
|
+++ virt-manager-1.3.2/virtinst/devicedisk.py
|
||||||
@@ -976,6 +976,17 @@ class VirtualDisk(VirtualDevice):
|
@@ -978,6 +978,17 @@ class VirtualDisk(VirtualDevice):
|
||||||
@rtype C{str}
|
@rtype C{str}
|
||||||
"""
|
"""
|
||||||
prefix, maxnode = self.get_target_prefix(skip_targets)
|
prefix, maxnode = self.get_target_prefix(skip_targets)
|
||||||
@ -28,7 +28,7 @@ Index: virt-manager-1.3.0/virtinst/devicedisk.py
|
|||||||
skip_targets = [t for t in skip_targets if t and t.startswith(prefix)]
|
skip_targets = [t for t in skip_targets if t and t.startswith(prefix)]
|
||||||
skip_targets.sort()
|
skip_targets.sort()
|
||||||
|
|
||||||
@@ -989,7 +1000,12 @@ class VirtualDisk(VirtualDevice):
|
@@ -991,7 +1002,12 @@ class VirtualDisk(VirtualDevice):
|
||||||
ran = range(pref_ctrl * 7, (pref_ctrl + 1) * 7)
|
ran = range(pref_ctrl * 7, (pref_ctrl + 1) * 7)
|
||||||
|
|
||||||
for i in ran:
|
for i in ran:
|
||||||
|
Loading…
Reference in New Issue
Block a user