2016-05-10 20:05:11 +02:00
|
|
|
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.
|
|
|
|
|
2018-02-07 17:59:50 +01:00
|
|
|
Index: virt-manager-1.5.0/virtinst/urlfetcher.py
|
2016-05-10 20:05:11 +02:00
|
|
|
===================================================================
|
2018-02-07 17:59:50 +01:00
|
|
|
--- virt-manager-1.5.0.orig/virtinst/urlfetcher.py
|
|
|
|
+++ virt-manager-1.5.0/virtinst/urlfetcher.py
|
|
|
|
@@ -1049,8 +1049,12 @@ class SuseDistro(Distro):
|
2016-05-10 20:05:11 +02:00
|
|
|
"boot/%s/initrd" % self.arch))
|
|
|
|
|
|
|
|
# Matches Opensuse > 10.2 and sles 10
|
|
|
|
- self._xen_kernel_paths = [("boot/%s/vmlinuz-xen" % self.arch,
|
|
|
|
- "boot/%s/initrd-xen" % self.arch)]
|
|
|
|
+ if self.arch == "i386":
|
|
|
|
+ self._xen_kernel_paths = [("boot/%s/vmlinuz-xenpae" % self.arch,
|
|
|
|
+ "boot/%s/initrd-xenpae" % self.arch)]
|
|
|
|
+ else:
|
|
|
|
+ self._xen_kernel_paths = [("boot/%s/vmlinuz-xen" % self.arch,
|
|
|
|
+ "boot/%s/initrd-xen" % self.arch)]
|
|
|
|
|
|
|
|
def _variantFromVersion(self):
|
|
|
|
distro_version = self.version_from_content[1].strip()
|