diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-02-27 10:43:55 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-02-27 10:43:55 +0000 |
commit | c2ef4a362e13249d8a774c7c5b7d0a8ab5df7d11 (patch) | |
tree | 820ca5b65bbd59af066a8a30fc4071ffde4517bf /perl-install/fs/mount_point.pm | |
parent | 4dcae0918ec5a3c0e3623b1ffb5d52217d093935 (diff) | |
download | drakx-c2ef4a362e13249d8a774c7c5b7d0a8ab5df7d11.tar drakx-c2ef4a362e13249d8a774c7c5b7d0a8ab5df7d11.tar.gz drakx-c2ef4a362e13249d8a774c7c5b7d0a8ab5df7d11.tar.bz2 drakx-c2ef4a362e13249d8a774c7c5b7d0a8ab5df7d11.tar.xz drakx-c2ef4a362e13249d8a774c7c5b7d0a8ab5df7d11.zip |
- do not assign a mount point to partitions of type "Compaq diagnostics"
Diffstat (limited to 'perl-install/fs/mount_point.pm')
-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 b21a37b62..608e3062e 100644 --- a/perl-install/fs/mount_point.pm +++ b/perl-install/fs/mount_point.pm @@ -47,7 +47,7 @@ sub suggest_mount_points { sub suggest_mount_points_always { my ($fstab) = @_; - my @win = grep { isFat_or_NTFS($_) && maybeFormatted($_) && !$_->{is_removable} } @$fstab; + my @win = grep { isFat_or_NTFS($_) && maybeFormatted($_) && !$_->{is_removable} && $_->{pt_type} != 0x12 } @$fstab; log::l("win parts: ", join ",", map { $_->{device} } @win) if @win; if (@win == 1) { #- Suggest /boot/efi on ia64. |