summaryrefslogtreecommitdiffstats
path: root/rescue/drvinst
diff options
context:
space:
mode:
Diffstat (limited to 'rescue/drvinst')
-rwxr-xr-xrescue/drvinst9
1 files changed, 9 insertions, 0 deletions
diff --git a/rescue/drvinst b/rescue/drvinst
index 177f3cbde..794bc3f85 100755
--- a/rescue/drvinst
+++ b/rescue/drvinst
@@ -38,6 +38,12 @@ sub install_module($$) {
my ($driver, $descr) = @_;
print "Installing driver $driver (for \"$descr\")\n";
system("/sbin/modprobe", $driver) and print "\tfailed\n";
+ if ($driver =~ /usb/) {
+ print "Installing driver usbkdb\n";
+ system('/sbin/modprobe', 'usbkbd') and print "\tfailed\n";
+ print "Installing driver keybdev\n";
+ system('/sbin/modprobe', 'keybdev') and print "\tfailed\n";
+ }
}
@@ -56,6 +62,9 @@ foreach $card (pci_probe()) {
#-------------------------------------------------
#- $Log$
+#- Revision 1.4 2001/09/27 15:57:55 gc
+#- try to fix usb keyboards
+#-
#- Revision 1.3 2001/03/29 11:33:28 gc
#- test for "Card:" and not install, some videoboards are not reported as DISPLAY_VGA :-(
#-