diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-03-25 09:15:37 -0400 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-03-25 19:56:02 +0100 |
commit | 41d85ca8590b947e7ee46e1f15b9a3553fedbfe1 (patch) | |
tree | 850af6a3ff31d68480623b3128fb7fad854a1839 | |
parent | adfebc5bb2c3ef4c14bea85ef4b5112f13453745 (diff) | |
download | drakx-41d85ca8590b947e7ee46e1f15b9a3553fedbfe1.tar drakx-41d85ca8590b947e7ee46e1f15b9a3553fedbfe1.tar.gz drakx-41d85ca8590b947e7ee46e1f15b9a3553fedbfe1.tar.bz2 drakx-41d85ca8590b947e7ee46e1f15b9a3553fedbfe1.tar.xz drakx-41d85ca8590b947e7ee46e1f15b9a3553fedbfe1.zip |
preselect grub2-efi under UEFI
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/any.pm | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 425fa3903..460f7e8ac 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -4,6 +4,7 @@ o fix retrieving ESP partition type on GPT o log which GPT partition we fail to add/del o set proper GUID to ESP partitions with GPT layout +- pre-install grub2-efi on UEFI Version 16.69 - 20 March 2015 diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index cd658ad32..34f8c68f6 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -835,6 +835,8 @@ sub default_packages { # only needed for CDs/DVDs installations: add_n_log("method='cdrom'", 'perl-Hal-Cdroms') if $o->{method} eq 'cdrom'; add_n_log("needed for VMware hypervisor", 'open-vm-tools') if detect_devices::is_vmware(); + # we only support grub2-efi on UEFI: + add_n_log("needed for UEFI boot", 'grub2-efi') if is_uefi(); my $dmi_BIOS = detect_devices::dmidecode_category('BIOS'); my $dmi_Base_Board = detect_devices::dmidecode_category('Base Board'); |