summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/mount.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-08-02 05:31:30 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-08-02 05:31:30 +0000
commit4547b43b69d27a7f5a501d8768be6a7d32fd343e (patch)
tree2e920cd0505e1254e1e7ec4caa7f70ac9c0a5eda /perl-install/fs/mount.pm
parent5f256c73d599edd3e475e694abdd8c4cd1384a2d (diff)
downloaddrakx-4547b43b69d27a7f5a501d8768be6a7d32fd343e.tar
drakx-4547b43b69d27a7f5a501d8768be6a7d32fd343e.tar.gz
drakx-4547b43b69d27a7f5a501d8768be6a7d32fd343e.tar.bz2
drakx-4547b43b69d27a7f5a501d8768be6a7d32fd343e.tar.xz
drakx-4547b43b69d27a7f5a501d8768be6a7d32fd343e.zip
workaround missing nls_xxx module during install differently
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 40bc07f05..f75284e1d 100644
--- a/perl-install/fs/mount.pm
+++ b/perl-install/fs/mount.pm
@@ -58,6 +58,8 @@ sub mount {
if ($fs eq 'vfat') {
@mount_opt = 'check=relaxed';
+ } elsif ($fs eq 'ntfs') {
+ @mount_opt = () if $::isInstall; # esp. drop nls=xxx option so that we don't need kernel module nls_xxx
} elsif ($fs eq 'nfs') {
push @mount_opt, 'nolock', 'soft', 'intr' if $::isInstall;
} elsif ($fs eq 'jfs' && !$b_rdonly) {