From b20813c771ce7abd72d7c42338f7b1a6b245ff8a Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Tue, 31 Dec 2019 19:25:40 +0000 Subject: drakboot: support setting up uefi on aarch64 Partially tested on Amazon EC2, instance still didn't boot (as it needed it to be installed in removable mode (EFI/boot/bootaa64.efi) to be found) but at least drakboot --boot worked (except for failing to enabled acpid service) and things seem to be in the expected place. --- perl-install/bootloader.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'perl-install/bootloader.pm') diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 7e956cf87..fa678bce4 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -318,7 +318,7 @@ sub read { } # still no boot loader found? let's check for ESP if using UEFI: if (is_uefi()) { - if (-f "/boot/EFI/EFI/mageia/grubx64.efi" || -f "/boot/EFI/EFI/mageia/grubia32.efi") { + if (-f "/boot/EFI/EFI/mageia/grubx64.efi" || -f "/boot/EFI/EFI/mageia/grubia32.efi" || -f "/boot/efi/EFI/mageia/grubaa64.efi") { my $bootloader = bootloader::read_grub2(); return $bootloader if read_($bootloader); } @@ -2503,6 +2503,9 @@ sub ensure_pkg_is_installed { if (uefi_type() eq 'ia32') { $prefix = 'i386-efi'; $pkg = 'grub2-efi(x86-32)'; + } elsif (uefi_type() eq 'aa64') { + $prefix = 'arm64-efi'; + $pkg = 'grub2-efi(aarch-64)'; } else { $prefix = 'x86_64-efi'; $pkg = 'grub2-efi(x86-64)'; -- cgit v1.2.1