diff options
| author | Dirk von Suchodoletz | 2007-05-11 13:45:55 +0200 |
|---|---|---|
| committer | Dirk von Suchodoletz | 2007-05-11 13:45:55 +0200 |
| commit | 13570f2d3b94e5452213b8c3caac7b5f272364f2 (patch) | |
| tree | 026f4664c31ccb4a9fc89364da2b4a1e78816ef5 /initramfs/initrd-stuff/bin | |
| parent | More cleanup, small fix for hwautocfg ... (diff) | |
| download | core-13570f2d3b94e5452213b8c3caac7b5f272364f2.tar.gz core-13570f2d3b94e5452213b8c3caac7b5f272364f2.tar.xz core-13570f2d3b94e5452213b8c3caac7b5f272364f2.zip | |
Update of pci.ids, adapted usleep time in hwautocfg (for busybox usleep)
...
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1043 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initramfs/initrd-stuff/bin')
| -rwxr-xr-x | initramfs/initrd-stuff/bin/hwautocfg | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/initramfs/initrd-stuff/bin/hwautocfg b/initramfs/initrd-stuff/bin/hwautocfg index 49f8d7b5..e60fbcb8 100755 --- a/initramfs/initrd-stuff/bin/hwautocfg +++ b/initramfs/initrd-stuff/bin/hwautocfg @@ -231,7 +231,7 @@ done ( hwsetup -n -v > /tmp/hwsetup.info && echo "hwsetup" > /tmp/hwrun1 ) & ( for mod in usbcore uhci-hcd ohci-hcd usbhid; do modprobe -q $mod 2>/dev/null - usleep 5 + usleep 500 done; ) & return 0 } @@ -243,7 +243,7 @@ nwmod () { echo "** loading all defined network adaptor modules at $(sysup)" for mod in ${NWMODULES}; do modprobe ${MODPRV} $mod || error "$init_errnwad" - usleep 5 + usleep 500 done return 0 } @@ -280,7 +280,7 @@ if [ -n "${SLOWHWSETUP}" ] ; then modwaittime=${SLOWHWSETUP} [ $DEBUGLEVEL -eq 21 ] && echo "** set modwaittime to ${SLOWHWSETUP}ms" else - modwaittime=50 + modwaittime=500 fi [ $DEBUGLEVEL -eq 21 ] && echo "** 1st hwdetection finished at $(sysup)" # load ide drivers first, takes a while to initialize @@ -390,7 +390,7 @@ cat /tmp/hwsetup.info| while read line ; do if ! strinstr " ${driver} " "${driverlist}"; then strinstr "Card:" "${driver}" || strinstr "ps/2" "${driver}" || { modprobe ${MODPRV} ${driver} & - usleep 5; } + usleep 500; } driverlist="${driverlist} ${driver}" fi fi |
