summaryrefslogtreecommitdiffstats
path: root/rescue/drvinst
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2001-09-27 15:57:55 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2001-09-27 15:57:55 +0000
commit7df8678863f3f660fc1eeba7a4e37cba7a240373 (patch)
tree26335f2ada6f7bfa9934e75ad48dbffbd4a5fae3 /rescue/drvinst
parent225b58b20ae1eafd2fdda7887d20022ed4f5f97c (diff)
downloaddrakx-backup-do-not-use-7df8678863f3f660fc1eeba7a4e37cba7a240373.tar
drakx-backup-do-not-use-7df8678863f3f660fc1eeba7a4e37cba7a240373.tar.gz
drakx-backup-do-not-use-7df8678863f3f660fc1eeba7a4e37cba7a240373.tar.bz2
drakx-backup-do-not-use-7df8678863f3f660fc1eeba7a4e37cba7a240373.tar.xz
drakx-backup-do-not-use-7df8678863f3f660fc1eeba7a4e37cba7a240373.zip
try to fix usb keyboards
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 :-(
#-