diff options
author | Francois Pons <fpons@mandriva.com> | 2001-04-16 16:02:07 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-04-16 16:02:07 +0000 |
commit | 6d74a6b490b11ab86cec66c6a81e8d370bbcefe7 (patch) | |
tree | bf19c5a56cdf917c112d43663ea2ddc5ac49d362 | |
parent | 4541c3b5e452e6d5ba7f81167a41667167232af7 (diff) | |
download | drakx-6d74a6b490b11ab86cec66c6a81e8d370bbcefe7.tar drakx-6d74a6b490b11ab86cec66c6a81e8d370bbcefe7.tar.gz drakx-6d74a6b490b11ab86cec66c6a81e8d370bbcefe7.tar.bz2 drakx-6d74a6b490b11ab86cec66c6a81e8d370bbcefe7.tar.xz drakx-6d74a6b490b11ab86cec66c6a81e8d370bbcefe7.zip |
loading reiserfs module before formatting.
-rw-r--r-- | perl-install/fs.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 0dd353022..c46a11768 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -92,6 +92,7 @@ sub format_reiserfs($@) { my ($dev, @options) = @_; #TODO add -h tea + eval { modules::load('reiserfs') }; run_program::run("mkreiserfs", "-f", "-q", @options, devices::make($dev)) or die _("%s formatting of %s failed", "reiserfs", $dev); } |