Fix 64-bit EFI setup

This commit is contained in:
Fierelier 2023-08-01 17:32:47 +02:00
parent da5e84161c
commit c486d6b550
1 changed files with 1 additions and 1 deletions

View File

@ -403,7 +403,7 @@ def main():
print("Installing GRUB (EFI) ...")
grubTargets = []
if grubVersion in ["i386","both"]: grubTargets.append("i386-efi")
if grubVersion in ["x86_64","both"]: grubTargets.append("amd64-efi")
if grubVersion in ["x86_64","both"]: grubTargets.append("x86_64-efi")
for target in grubTargets:
chroot(ipth(),["grub-install","--target=" +target,"--uefi-secure-boot","--efi-directory=/boot/efi","--boot-directory=/boot","--force-extra-removable","--no-nvram",grubDisk])