From 0f32b38048f50cceed0f01b693086691909418ab Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 20 Jun 2016 17:24:00 +0200 Subject: ensure we've the right grub2 flavor (mga#18739) --- perl-install/NEWS | 3 +++ perl-install/bootloader.pm | 5 +++-- perl-install/install/NEWS | 2 ++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/perl-install/NEWS b/perl-install/NEWS index 8fdb461c3..ebb15f70d 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- drakboot: + o ensure we've the right grub2 flavor (mga#18739) + Version 17.39 - 18 June 2016 - diskdrake: diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 446df0ade..24be5d821 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -2144,7 +2144,6 @@ sub install { sub ensure_pkg_is_installed { my ($do_pkgs, $bootloader) = @_; - my %pkg = ('grub2' => is_uefi() ? 'grub2-efi' : 'grub2'); my %suppl = ( # method => [ 'pkg_name', 'file_to_test' ], 'grub-graphic' => [ qw(mageia-gfxboot-theme /usr/share/gfxboot/themes/Mageia/boot/message) ], @@ -2152,7 +2151,9 @@ sub ensure_pkg_is_installed { ); my $main_method = main_method($bootloader->{method}); if ($main_method eq 'grub2') { - $do_pkgs->ensure_binary_is_installed($pkg{grub2}, 'grub2-install', 1) or return 0; + my $pkg = is_uefi() ? 'grub2-efi' : 'grub2'; + my $prefix = is_uefi() ? 'efi' : 'pc'; + $do_pkgs->ensure_is_installed($pkg, glob("/usr/lib/grub/*-$prefix/ext2.mod"), 1) or return 0; } elsif (member($main_method, qw(grub grub2 lilo))) { $do_pkgs->ensure_binary_is_installed($main_method, $main_method, 1) or return 0; } diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 17968e6f0..b2fd611e7 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- bootloader: + o ensure we've the right grub2 flavor (mga#18739) - no more include vmmouse driver Version 17.39 - 18 June 2016 -- cgit v1.2.1