diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2004-01-23 18:58:25 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2004-01-23 18:58:25 +0000 |
commit | 256cf67fbca676257d0168fc1280e4db3c0e1682 (patch) | |
tree | 98d4d34c3b632b0938c045280914ccb41bbf9dab /perl-install/modules.pm | |
parent | 71bcb42927b2970d522f96c635d159f01946b2d7 (diff) | |
download | drakx-256cf67fbca676257d0168fc1280e4db3c0e1682.tar drakx-256cf67fbca676257d0168fc1280e4db3c0e1682.tar.gz drakx-256cf67fbca676257d0168fc1280e4db3c0e1682.tar.bz2 drakx-256cf67fbca676257d0168fc1280e4db3c0e1682.tar.xz drakx-256cf67fbca676257d0168fc1280e4db3c0e1682.zip |
don't miss the hook with 2.6 usb kernels (might explain fredl problem with usb keyboard)
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 3c766503f..e37777e73 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -366,7 +366,7 @@ sub name2file { sub when_load { my ($name, @options) = @_; - if ($name =~ /usb-[uo]hci/) { + if ($name =~ /[uo]hci/) { -f '/proc/bus/usb/devices' or eval { require fs; fs::mount('/proc/bus/usb', '/proc/bus/usb', 'usbdevfs'); #- ensure keyboard is working, the kernel must do the job the BIOS was doing |