mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-10 01:18:03 +03:00
urldetect: Fix sles11 ppc64 media detection
https://bugzilla.redhat.com/show_bug.cgi?id=1379653
This commit is contained in:
parent
52f0b1c91e
commit
03ded3e2bc
@ -516,10 +516,13 @@ class _SuseDistro(_RHELDistro):
|
|||||||
("boot/%s/vmlinuz-xen" % tree_arch,
|
("boot/%s/vmlinuz-xen" % tree_arch,
|
||||||
"boot/%s/initrd-xen" % tree_arch))
|
"boot/%s/initrd-xen" % tree_arch))
|
||||||
|
|
||||||
if (tree_arch == "s390x" and
|
if str(self._os_variant).startswith(("sles11", "sled11")):
|
||||||
str(self._os_variant).startswith(("sles11", "sled11"))):
|
if tree_arch == "s390x":
|
||||||
self._kernel_paths.append(
|
self._kernel_paths.append(
|
||||||
("boot/s390x/vmrdr.ikr", "boot/s390x/initrd"))
|
("boot/s390x/vmrdr.ikr", "boot/s390x/initrd"))
|
||||||
|
if tree_arch == "ppc64":
|
||||||
|
self._kernel_paths.append(
|
||||||
|
("suseboot/linux64", "suseboot/initrd64"))
|
||||||
|
|
||||||
# Tested with SLES 12 for ppc64le, all s390x
|
# Tested with SLES 12 for ppc64le, all s390x
|
||||||
self._kernel_paths.append(
|
self._kernel_paths.append(
|
||||||
|
Loading…
Reference in New Issue
Block a user