diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-12-16 18:25:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-12-16 18:25:37 +0000 |
commit | c3822da244887ef19b2ef7bba5812d18bc6ea8db (patch) | |
tree | 4e5d35b87f2a0bacc83a8a76fea755305c7b817e /perl-install/modules.pm | |
parent | 3bf40616e233d127ecc0c1f90edd740d23a361ca (diff) | |
download | drakx-c3822da244887ef19b2ef7bba5812d18bc6ea8db.tar drakx-c3822da244887ef19b2ef7bba5812d18bc6ea8db.tar.gz drakx-c3822da244887ef19b2ef7bba5812d18bc6ea8db.tar.bz2 drakx-c3822da244887ef19b2ef7bba5812d18bc6ea8db.tar.xz drakx-c3822da244887ef19b2ef7bba5812d18bc6ea8db.zip |
use ldetect-lst for usb => now auto detects mice types :)
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 4494e366c..dfdebd6cd 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -497,7 +497,7 @@ sub load_raw { 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 sleep 2; - load_multi("usbkbd", "keybdev") if detect_devices::hasUsbKeyboard(); + load_multi("usbkbd", "keybdev") if detect_devices::usbKeyboards(); } } } @@ -612,7 +612,7 @@ sub load_thiskind { } get_that_type($type), $type =~ /scsi/ && arch() !~ /sparc/ ? (map { +{ driver => $_, description => $_, try => 1 } } - detect_devices::hasUsbZip() ? "usb-storage" : (), "imm", "ppa") : (); + detect_devices::usbZips() ? "usb-storage" : (), "imm", "ppa") : (); } sub get_that_type { |