summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/mount.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-03-14 15:14:12 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-03-14 15:14:12 +0000
commit3eb43041540d80ff63c99bcb9e0ae326e3250ecf (patch)
tree1f5e0202db53799851761bc3e446d9b37452ba57 /perl-install/fs/mount.pm
parent3f613fd71704879f109d2613386ded3e2946acc4 (diff)
downloaddrakx-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)
Diffstat (limited to 'perl-install/fs/mount.pm')
-rw-r--r--perl-install/fs/mount.pm2
1 files changed, 2 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);