diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-03-30 03:38:32 -0400 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2015-03-30 15:08:52 +0259 |
commit | 9c16709d59d7b6f79fa88fe2765742db2b13ec11 (patch) | |
tree | 88a82ab21d74929cb455c5777c656d0aa0891377 /perl-install/fs | |
parent | 0f907160598cc726a639fe06d1902f0e0811bb81 (diff) | |
download | drakx-9c16709d59d7b6f79fa88fe2765742db2b13ec11.tar drakx-9c16709d59d7b6f79fa88fe2765742db2b13ec11.tar.gz drakx-9c16709d59d7b6f79fa88fe2765742db2b13ec11.tar.bz2 drakx-9c16709d59d7b6f79fa88fe2765742db2b13ec11.tar.xz drakx-9c16709d59d7b6f79fa88fe2765742db2b13ec11.zip |
relax checks for ESP
- match ESP even if already mounted
- drop checking if !recovery, it's useless as isESP() and isRecovery() checks
for different partition types, etc
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/mount_point.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/mount_point.pm b/perl-install/fs/mount_point.pm index e4f4ac1c9..8c9069287 100644 --- a/perl-install/fs/mount_point.pm +++ b/perl-install/fs/mount_point.pm @@ -58,7 +58,7 @@ sub suggest_mount_points { sub suggest_mount_points_always { my ($fstab) = @_; - my @ESP = grep { isESP($_) && !$_->{isMounted} && maybeFormatted($_) && !$_->{is_removable} && !isRecovery($_) } @$fstab; + my @ESP = grep { isESP($_) && maybeFormatted($_) && !$_->{is_removable} } @$fstab; if (@ESP) { $ESP[0]{mntpoint} = "/boot/EFI"; } |