livemedia-creator: Search for kernel/initrd under /images/pxeboot (#1522629)

On aarch64 the kernel and initrd are under /images/pxeboot, add these
paths to the search list.

Resolves: rhbz#1522629
This commit is contained in:
Brian C. Lane 2017-12-06 08:32:36 -08:00
parent 88664f03a1
commit 6f2494f9d5
1 changed files with 2 additions and 1 deletions

View File

@ -207,7 +207,8 @@ class IsoMountpoint(object):
self.mount_dir = self.initrd_path
kernel_list = [("/isolinux/vmlinuz", "/isolinux/initrd.img"),
("/ppc/ppc64/vmlinuz", "/ppc/ppc64/initrd.img")]
("/ppc/ppc64/vmlinuz", "/ppc/ppc64/initrd.img"),
("/images/pxeboot/vmlinuz", "/images/pxeboot/initrd.img")]
if os.path.isdir( self.mount_dir+"/repodata" ):
self.repo = self.mount_dir
else: