diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-03 05:14:21 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-03 05:14:21 +0000 |
commit | 2fbb5a0bf3ccf3096417626c256d9a442289204c (patch) | |
tree | 9bb1afb9164027c9caafa2396887e66902820f17 /perl-install | |
parent | 6edb6f8ffe78a3f6ca09cd63b12bdf08f3269f3d (diff) | |
download | drakx-2fbb5a0bf3ccf3096417626c256d9a442289204c.tar drakx-2fbb5a0bf3ccf3096417626c256d9a442289204c.tar.gz drakx-2fbb5a0bf3ccf3096417626c256d9a442289204c.tar.bz2 drakx-2fbb5a0bf3ccf3096417626c256d9a442289204c.tar.xz drakx-2fbb5a0bf3ccf3096417626c256d9a442289204c.zip |
inline old mount command which has been removed
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/commands.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/commands.pm b/perl-install/commands.pm index e6e49f5af..b8359d54b 100644 --- a/perl-install/commands.pm +++ b/perl-install/commands.pm @@ -460,7 +460,10 @@ sub bug { $h and die "usage: bug\nput file report.bug on fat formatted floppy\n"; require detect_devices; - mount devices::make(detect_devices::floppy()), "/fd0"; + require modules; + require fs; + modules::load_dependencies("/modules/modules.dep"); + fs::mount(devices::make(detect_devices::floppy()), '/fd0', 'vfat'); require install_any; output("/fd0/report.bug", install_any::report_bug()); |