diff options
author | Thomas Backlund <tmb@mageia.org> | 2015-01-08 20:51:44 +0159 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2015-01-08 20:51:44 +0159 |
commit | 5fd7be6bb8822a8434dcf667482771b2753a8b8d (patch) | |
tree | 420580f1e32cd1de8e65543836f2a9beff130d82 /perl-install/fs/mount_point.pm | |
parent | ac25be0df4b079dbe65b88e89f51a6e5fd1dee39 (diff) | |
download | drakx-5fd7be6bb8822a8434dcf667482771b2753a8b8d.tar drakx-5fd7be6bb8822a8434dcf667482771b2753a8b8d.tar.gz drakx-5fd7be6bb8822a8434dcf667482771b2753a8b8d.tar.bz2 drakx-5fd7be6bb8822a8434dcf667482771b2753a8b8d.tar.xz drakx-5fd7be6bb8822a8434dcf667482771b2753a8b8d.zip |
we need /boot/EFI on uefi systems
Diffstat (limited to 'perl-install/fs/mount_point.pm')
-rw-r--r-- | perl-install/fs/mount_point.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/fs/mount_point.pm b/perl-install/fs/mount_point.pm index e56c330c0..c399c7d3b 100644 --- a/perl-install/fs/mount_point.pm +++ b/perl-install/fs/mount_point.pm @@ -55,8 +55,7 @@ sub suggest_mount_points_always { my @win = grep { isFat_or_NTFS($_) && !$_->{isMounted} && maybeFormatted($_) && !$_->{is_removable} && $_->{pt_type} != 0x12 && !isRecovery($_) } @$fstab; log::l("win parts: ", join ",", map { $_->{device} } @win) if @win; if (@win == 1) { - #- Suggest /boot/efi on ia64. - $win[0]{mntpoint} = arch() =~ /ia64/ ? "/boot/efi" : "/media/windows"; + $win[0]{mntpoint} = "/media/windows"; } else { my %w; foreach (@win) { my $v = $w{$_->{device_windobe}}++; |