diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/fs/mount_point.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 91e9aae6f..e8fb1ee96 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -3,6 +3,7 @@ o fix getting ESP with "use free space": make sure to not override /boot/EFI mount point with /media/win_X o make sure to check for existing ESP on all disks + o relax checks for ESP o try to detect recovery partitions on GPT - stage2: o revert changes made in 16.70 for a better fix to mga#13894 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"; } diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index b7ae2ae30..647b79ecb 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -3,6 +3,7 @@ o fix getting ESP with "use free space": make sure to not override /boot/EFI mount point with /media/win_X o make sure to check for existing ESP on all disks + o relax checks for ESP o try to detect recovery partitions on GPT Version 16.74 - 27 March 2015 |