summaryrefslogtreecommitdiffstats
path: root/perl-install/modules.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r--perl-install/modules.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 77091048d..cdee937ee 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -399,8 +399,8 @@ sub load_multi {
load_raw(map { [ $_ ] } @l);
}
-sub unload($;$) {
- my ($m, $remove_alias) = @_;
+sub unload {
+ my ($m) = @_;
if ($::testing) {
log::l("rmmod $m");
} else {
@@ -408,7 +408,6 @@ sub unload($;$) {
delete $conf{$m}{loaded};
}
}
- remove_alias($m) if $remove_alias;
}
sub load_raw {
@@ -434,6 +433,7 @@ sub load_raw {
/^irq=(\d+)/ and eval { output "/proc/parport/0/irq", $1 };
}
} elsif ($_->[0] =~ /usb-[uo]hci/) {
+ add_alias('usb-interface', $_->[0]);
#- ensure keyboard is working, the kernel must do the job the BIOS was doing
load_multi("usbkbd", "keybdev");
}