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/NEWS | 4 +++- perl-install/bootloader.pm | 15 +++++++++++++-- perl-install/install/NEWS | 4 +++- perl-install/install/any.pm | 2 +- 4 files changed, 20 insertions(+), 5 deletions(-) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index 121f45bb0..47a7f4dd9 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,4 +1,6 @@ -- drakboot: only prefer rEFInd if it installed in the root fs (mga#23944) +- drakboot: + o only prefer rEFInd if it is installed in the root fs (mga#23944) + o support 32-bit UEFI with 64-bit O/S - desktop kernels are now PAE, for PTI security fixes to work properly, so if cpu is not supporting it, install the desktop586 kernel diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 0bc156b67..a9bb1e73d 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -2498,8 +2498,19 @@ sub ensure_pkg_is_installed { ); my $main_method = main_method($bootloader->{method}); if ($main_method eq 'grub2') { - my $pkg = is_uefi() ? 'grub2-efi' : 'grub2'; - my $prefix = is_uefi() ? (arch() eq 'x86_64' ? 'x86_64-efi' : 'i386-efi') : 'i386-pc'; + my ($prefix, $pkg); + if (is_uefi()) { + if (uefi_type() eq 'ia32') { + $prefix = 'i386-efi'; + $pkg = 'grub2-efi(x86-32)'; + } else { + $prefix = 'x86_64-efi'; + $pkg = 'grub2-efi(x86-64)'; + } + } else { + $prefix = 'i386-pc'; + $pkg = 'grub2'; + } $do_pkgs->ensure_is_installed($pkg, "/usr/lib/grub/$prefix/ext2.mod", 1) or return 0; } elsif ($main_method eq 'refind') { $do_pkgs->ensure_is_installed('refind', '/sbin/refind-install', 1) or return 0; 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