From 7df8678863f3f660fc1eeba7a4e37cba7a240373 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Thu, 27 Sep 2001 15:57:55 +0000 Subject: try to fix usb keyboards --- rescue/drvinst | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'rescue/drvinst') 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 :-( #- -- cgit v1.2.1