67142b1ff7
e902fa55-force-binary-mode-with-FTP-servers.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=358
26 lines
1.2 KiB
Diff
26 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-1.4.2/virtinst/urlfetcher.py
|
|
===================================================================
|
|
--- virt-manager-1.4.2.orig/virtinst/urlfetcher.py
|
|
+++ virt-manager-1.4.2/virtinst/urlfetcher.py
|
|
@@ -1025,8 +1025,12 @@ class SuseDistro(Distro):
|
|
"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()
|