diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/modules.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index e73cfdaac..8d7e08277 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- usbkbd is dead, using usbhid instead - allow passing suppl=0 to disable "additional installation media" question - drakx-in-chroot: o fix using remote repositories diff --git a/perl-install/modules.pm b/perl-install/modules.pm index ba4b2a781..74fe8707d 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -267,7 +267,7 @@ sub when_load_category { require fs::mount; 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(); + load("usbhid") if detect_devices::usbKeyboards(); }; } elsif ($category eq 'bus/firewire') { $conf->set_alias('ieee1394-controller', $name); |