From 6f2494f9d5aa8b869c9b66f0d3c5355d5eef0a3e Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Wed, 6 Dec 2017 08:32:36 -0800 Subject: [PATCH] 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 --- src/sbin/livemedia-creator | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sbin/livemedia-creator b/src/sbin/livemedia-creator index ca59d7fe..13680a10 100755 --- a/src/sbin/livemedia-creator +++ b/src/sbin/livemedia-creator @@ -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: