diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-02-08 11:37:30 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-02-08 11:37:30 +0000 |
commit | 51637cc2e6a2e158f3ede301c8f16eb915515ab5 (patch) | |
tree | dbfcf3cf7215e001776e63a4f74af44c1e629c39 /perl-install/modules.pm | |
parent | 62aeac2fdc4433c91c68c342c72ea8659591c07d (diff) | |
download | drakx-51637cc2e6a2e158f3ede301c8f16eb915515ab5.tar drakx-51637cc2e6a2e158f3ede301c8f16eb915515ab5.tar.gz drakx-51637cc2e6a2e158f3ede301c8f16eb915515ab5.tar.bz2 drakx-51637cc2e6a2e158f3ede301c8f16eb915515ab5.tar.xz drakx-51637cc2e6a2e158f3ede301c8f16eb915515ab5.zip |
new kernel doesn't like usbdevfs any more, it wants usbfs
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 c21405013..8622b11f7 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -249,7 +249,7 @@ sub when_load_category { } elsif ($category eq 'bus/usb') { $conf->add_probeall('usb-interface', $name); -f '/proc/bus/usb/devices' or eval { - require fs; fs::mount('none', '/proc/bus/usb', 'usbdevfs'); + require fs; fs::mount_usbfs(''); #- ensure keyboard is working, the kernel must do the job the BIOS was doing sleep 4; load("usbkbd", "keybdev") if detect_devices::usbKeyboards(); |