From 7622145fea6fa1a7fe9a9f73a5bbd22f28b29767 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 13 Jul 2026 10:01:04 -0400 Subject: [PATCH] Fall back to x64 if the aarch64 location didn't pan out --- imgutil/imgutil | 1 + 1 file changed, 1 insertion(+) diff --git a/imgutil/imgutil b/imgutil/imgutil index af20ab31..488be579 100644 --- a/imgutil/imgutil +++ b/imgutil/imgutil @@ -1488,6 +1488,7 @@ def gather_bootloader(outdir, rootpath='/'): shimlocation = os.path.join(rootpath, 'boot/efi/EFI/BOOT/BOOTAA64.EFI') shimdestfilename = os.path.basename(shimlocation) if not os.path.exists(shimlocation): + shimdestfilename = 'BOOTX64.EFI' shimlocation = os.path.join(rootpath, 'usr/lib64/efi/shim.efi') if not os.path.exists(shimlocation): shimlocation = os.path.join(rootpath, 'usr/lib/shim/shimx64.efi.signed')