diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-06-05 16:23:22 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-06-05 16:23:22 +0000 |
commit | 2ad0082a2509beb9569af4c506c27d67ea5ed76b (patch) | |
tree | 14d20b04d11d0dfa5f0d8fb6a4cf6077697ac9db | |
parent | 2d363e64a4a1f89b1b92969780fbe8aec11cb95d (diff) | |
download | drakx-2ad0082a2509beb9569af4c506c27d67ea5ed76b.tar drakx-2ad0082a2509beb9569af4c506c27d67ea5ed76b.tar.gz drakx-2ad0082a2509beb9569af4c506c27d67ea5ed76b.tar.bz2 drakx-2ad0082a2509beb9569af4c506c27d67ea5ed76b.tar.xz drakx-2ad0082a2509beb9569af4c506c27d67ea5ed76b.zip |
(mount): notail in any case
-rw-r--r-- | perl-install/fs.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 9e3009bde..cc42a96a4 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -219,7 +219,8 @@ sub mount($$$;$) { } elsif ($fs eq 'reiserfs') { #- could be better if we knew if there is a /boot or not #- without knowing it, / is forced to be mounted with notail - #$mount_opt = 'notail' if $where =~ m|/(boot)?$|; + # if $where =~ m|/(boot)?$|; + $mount_opt = 'notail'; #- notail in any case eval { modules::load('reiserfs') }; } elsif ($fs eq 'romfs') { eval { modules::load('romfs') }; |