From 3903717238342e11f144964dbf97a0605b58c942 Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Sun, 16 Dec 2018 23:02:26 +0000 Subject: Support 32-bit UEFI with 64-bit O/S. --- perl-install/install/NEWS | 4 +++- perl-install/install/any.pm | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'perl-install/install') diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 89dab99a4..4fbc4e212 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,7 @@ - avoid resetting keyboard layout at end of formatting step (mga#23877) -- bootloader: only prefer rEFInd if it installed in the root fs (mga#23944) +- bootloader: + o only prefer rEFInd if it is installed in the root fs (mga#23944) + o support 32-bit UEFI with 64-bit O/S Version 18.8.1 - 1 Dec 2018 diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index 277feac2a..13da840ad 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -811,7 +811,7 @@ sub default_bootloader() { my $p; if (is_uefi()) { log::l("defaulting to grub2-efi"); - $p = 'grub2-efi'; + $p = uefi_type() eq 'ia32' ? 'grub2-efi(x86-32)' : 'grub2-efi(x86-64)'; } else { log::l("defaulting to grub2"); $p = 'grub2'; -- cgit v1.2.1