diff options
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()); |