686ee09506
b8aff280-virtinst-quickfix-ubuntu-net-preseed-insert-cdrom-error.patch 25b88733-urldetect-Dont-overload-suse_content-variable.patch 9308bae3-util-Fix-typo-vpcu-vcpu.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=438
29 lines
1.2 KiB
Diff
29 lines
1.2 KiB
Diff
References: bsc#978173
|
|
The 32bit versions of the media contain a xenpae version along with
|
|
a non pae version. The sles10 sp4 32bit kernel will only boot para-
|
|
virtualized if the pae kernel is selected.
|
|
Note that sles12 and newer has no 32bit release.
|
|
|
|
Index: virt-manager-2.0.0/virtinst/urldetect.py
|
|
===================================================================
|
|
--- virt-manager-2.0.0.orig/virtinst/urldetect.py
|
|
+++ virt-manager-2.0.0/virtinst/urldetect.py
|
|
@@ -541,9 +541,14 @@ class SuseDistro(Distro):
|
|
self._kernel_paths = []
|
|
if self.type == "xen":
|
|
# Matches Opensuse > 10.2 and sles 10
|
|
- self._kernel_paths.append(
|
|
- ("boot/%s/vmlinuz-xen" % tree_arch,
|
|
- "boot/%s/initrd-xen" % tree_arch))
|
|
+ if self.arch == "i386":
|
|
+ self._kernel_paths.append(
|
|
+ ("boot/%s/vmlinuz-xen" % tree_arch,
|
|
+ "boot/%s/initrd-xen" % tree_arch))
|
|
+ else:
|
|
+ self._kernel_paths.append(
|
|
+ ("boot/%s/vmlinuz-xenpae" % tree_arch,
|
|
+ "boot/%s/initrd-xenpae" % tree_arch))
|
|
|
|
if (tree_arch == "s390x" and
|
|
(self._os_variant == "sles11" or self._os_variant == "sled11")):
|