diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-09-27 15:57:55 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-09-27 15:57:55 +0000 |
commit | 7df8678863f3f660fc1eeba7a4e37cba7a240373 (patch) | |
tree | 26335f2ada6f7bfa9934e75ad48dbffbd4a5fae3 /rescue | |
parent | 225b58b20ae1eafd2fdda7887d20022ed4f5f97c (diff) | |
download | drakx-7df8678863f3f660fc1eeba7a4e37cba7a240373.tar drakx-7df8678863f3f660fc1eeba7a4e37cba7a240373.tar.gz drakx-7df8678863f3f660fc1eeba7a4e37cba7a240373.tar.bz2 drakx-7df8678863f3f660fc1eeba7a4e37cba7a240373.tar.xz drakx-7df8678863f3f660fc1eeba7a4e37cba7a240373.zip |
try to fix usb keyboards
Diffstat (limited to 'rescue')
-rwxr-xr-x | rescue/drvinst | 9 |
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 :-( #- |