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 | |
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')
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/fs/mount_point.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 7fa5f565a..18ca99294 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- harddrake: + o do not assign a mount point to partitions of type "Compaq diagnostics" + Version 10.6.23 - 25 February 2008 - drakboot: 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. diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index fc516cb38..c211370a3 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- do not assign a mount point to partitions of type "Compaq diagnostics" + Version 10.6.23 - 25 February 2008 - adapt to cooker: |