From e1c15cca8e61b01e8e342936b8633f12831fcc1b Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 19 Nov 2021 11:34:06 -0500 Subject: [PATCH] Switch to secureboot signed grub for ubuntu It was pulling an efi binary incompatible with secureboot before. --- imgutil/imgutil | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgutil/imgutil b/imgutil/imgutil index 83adb13b..74b1e7cb 100644 --- a/imgutil/imgutil +++ b/imgutil/imgutil @@ -1206,7 +1206,7 @@ def gather_bootloader(outdir, rootpath='/'): if not grubbin: grubbin = os.path.join(rootpath, 'usr/lib64/efi/grub.efi') if not os.path.exists(grubbin): - grubbin = os.path.join(rootpath, 'usr/lib/grub/x86_64-efi/monolithic/grubx64.efi') + grubbin = os.path.join(rootpath, 'usr/lib/grub/x86_64-efi-signed/grubx64.efi.signed') shutil.copyfile(grubbin, os.path.join(outdir, 'boot/efi/boot/grubx64.efi')) shutil.copyfile(grubbin, os.path.join(outdir, 'boot/efi/boot/grub.efi'))