diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-03-14 15:14:12 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-03-14 15:14:12 +0000 |
commit | 3eb43041540d80ff63c99bcb9e0ae326e3250ecf (patch) | |
tree | 1f5e0202db53799851761bc3e446d9b37452ba57 | |
parent | 3f613fd71704879f109d2613386ded3e2946acc4 (diff) | |
download | drakx-3eb43041540d80ff63c99bcb9e0ae326e3250ecf.tar drakx-3eb43041540d80ff63c99bcb9e0ae326e3250ecf.tar.gz drakx-3eb43041540d80ff63c99bcb9e0ae326e3250ecf.tar.bz2 drakx-3eb43041540d80ff63c99bcb9e0ae326e3250ecf.tar.xz drakx-3eb43041540d80ff63c99bcb9e0ae326e3250ecf.zip |
- mount ntfs-3g as ntfs during install
(fixes adding "windows" entry in bootloader)
-rw-r--r-- | perl-install/fs/mount.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/fs/mount.pm b/perl-install/fs/mount.pm index cca45ad22..e96228d75 100644 --- a/perl-install/fs/mount.pm +++ b/perl-install/fs/mount.pm @@ -167,6 +167,8 @@ sub part { my $fs_type = $part->{fs_type}; if ($fs_type eq 'auto' && $part->{media_type} eq 'cdrom' && $::isInstall) { $fs_type = 'iso9660'; + } elsif ($fs_type eq 'ntfs-3g' && $::isInstall) { + $fs_type = 'ntfs'; } mount($dev, $mntpoint, $fs_type, $b_rdonly, $options, $o_wait_message); diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 2347df89e..2a17baea3 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- mount ntfs-3g as ntfs during install + (fixes adding "windows" entry in bootloader) - really fix partition device name for some dmraid (missing "p", cf #38363) - cpufreq: fix gsx-suspmod probe - do not propose to upgrade non-mandriva and non-conectiva distros (#38408) |