diff options
-rw-r--r-- | perl-install/fs/any.pm | 6 | ||||
-rw-r--r-- | perl-install/fsedit.pm | 11 |
2 files changed, 12 insertions, 5 deletions
diff --git a/perl-install/fs/any.pm b/perl-install/fs/any.pm index bd5f99b7e..5471980d2 100644 --- a/perl-install/fs/any.pm +++ b/perl-install/fs/any.pm @@ -67,8 +67,10 @@ sub check_hds_boot_and_root { my ($all_hds, $fstab) = @_; fs::get::root_($fstab) or die "Oops, no root partition"; - if (is_uefi() && !fs::get::has_mntpoint("/boot/EFI", $all_hds)) { - die N("You must have a ESP FAT32 partition mounted in /boot/EFI"); + if (is_uefi()) { + if (!fs::get::has_mntpoint("/boot/EFI", $all_hds)) { + die N("You must have a ESP FAT32 partition mounted in /boot/EFI"); + } } } diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 024d6f975..d67ce0856 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -47,11 +47,16 @@ sub init_efi_suggestions { return if $done && !$o_force; $done++; + my $mntpoint; # only suggests /boot/EFI if there's not already one: - return if !is_uefi() || grep { isESP($_) } @$fstab; - + if (is_uefi()) { + if (!grep { isESP($_) } @$fstab) { + $mntpoint = { mntpoint => "/boot/EFI", size => MB(100), pt_type => 0xef, ratio => 1, maxsize => MB(300) }; + } + } + return if !$mntpoint; foreach (values %suggestions) { - unshift @$_, { mntpoint => "/boot/EFI", size => MB(100), pt_type => 0xef, ratio => 1, maxsize => MB(300) }; + unshift @$_, $mntpoint; } } |