From dae1ba234d72d95ee0bfc775df776ce6775ca90f Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Mon, 12 Mar 2018 20:24:44 +0000 Subject: drakboot: detect 32-bit UEFI GRUB2 bootloader when probing. This is the only missing piece for supporting 32-bit UEFI boot. --- perl-install/bootloader.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index c10187002..5c6bd4a01 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -263,7 +263,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") { + if (-f "/boot/EFI/EFI/mageia/grubx64.efi" || -f "/boot/EFI/EFI/mageia/grubia32.efi") { my $bootloader = bootloader::read_grub2(); return $bootloader if read_($bootloader); } -- cgit v1.2.1