diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-09-09 14:36:55 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-09-09 14:36:55 +0000 |
commit | f892cfd1e31ed48cc04449fb117aa381d5ee0669 (patch) | |
tree | 199e70234f0e000b5d0d318b92d66dda583268c2 /perl-install | |
parent | 5f1c66c1b98e9b7742a6d90a13bdbcc19e02503a (diff) | |
download | drakx-f892cfd1e31ed48cc04449fb117aa381d5ee0669.tar drakx-f892cfd1e31ed48cc04449fb117aa381d5ee0669.tar.gz drakx-f892cfd1e31ed48cc04449fb117aa381d5ee0669.tar.bz2 drakx-f892cfd1e31ed48cc04449fb117aa381d5ee0669.tar.xz drakx-f892cfd1e31ed48cc04449fb117aa381d5ee0669.zip |
increase sleep time after modprobing usb-uhci/usb-ohci (otherwise USB mouse may be undetected)
Diffstat (limited to 'perl-install')
-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 b011316c0..01f828c6f 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -412,7 +412,7 @@ sub load_raw { 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 - sleep 2; + sleep 4; load("usbkbd", "keybdev") if detect_devices::usbKeyboards(); } } |