summaryrefslogtreecommitdiffstats
path: root/perl-install/commands.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/commands.pm')
-rw-r--r--perl-install/commands.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/commands.pm b/perl-install/commands.pm
index ecbe7774b..f5b83aa10 100644
--- a/perl-install/commands.pm
+++ b/perl-install/commands.pm
@@ -78,7 +78,7 @@ sub mount {
require fs;
require modules;
- modules::load_deps("/modules/modules.dep");
+ modules::load_dependencies("/modules/modules.dep");
fs::mount($dev, $where, $fs, $r);
}
@@ -442,7 +442,7 @@ sub modprobe {
$h || @_ == 0 and die "usage: modprobe <module> [options]\n";
my $name = shift;
require modules;
- modules::load_deps("/modules/modules.dep");
+ modules::load_dependencies("/modules/modules.dep");
modules::load($name, '', @_);
}