Accepting request 494844 from Virtualization

Simple bug fix release

OBS-URL: https://build.opensuse.org/request/show/494844
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/virt-manager?expand=0&rev=151
This commit is contained in:
Dominique Leuenberger 2017-05-16 12:45:33 +00:00 committed by Git OBS Bridge
commit 92a218512d
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon May 8 16:13:38 MDT 2017 - carnold@suse.com
- bsc#1037958 - Guest "sles-11-sp3 32bit PV" is failed to boot up
Don't use 64bit grub.xen to boot 32bit PV guest
virtinst-pvgrub2-bootloader.patch
-------------------------------------------------------------------
Thu Apr 27 13:53:45 MDT 2017 - carnold@suse.com

View File

@ -13,7 +13,7 @@ Index: virt-manager-1.4.1/virtinst/guest.py
- self.bootloader = "/usr/bin/pygrub"
- self.os.clear()
+ os_ver = self._get_os_variant()
+ if os_ver.startswith("sles9") or \
+ if self.os.arch != 'x86_64' or os_ver.startswith("sles9") or \
+ os_ver.startswith("sles10") or os_ver.startswith("sled10") or \
+ os_ver.startswith("opensuse10") or os_ver.startswith("opensuse11"):
+ self.bootloader = "/usr/bin/pygrub"