busybox-initramfs:

- change usleep to 1 sec.
This commit is contained in:
Stephan Raue
2010-04-25 21:59:05 +02:00
parent 60de910d27
commit 7eb68d8382

View File

@@ -56,7 +56,7 @@
/bin/busybox ionice -c 1 -n 0 \ /bin/busybox ionice -c 1 -n 0 \
/bin/busybox mount -o $3 $1 $2 > /dev/null 2>&1 /bin/busybox mount -o $3 $1 $2 > /dev/null 2>&1
[ $? -eq 0 ] && ERR_ENV=0 && break [ $? -eq 0 ] && ERR_ENV=0 && break
/bin/busybox usleep 200000 /bin/busybox usleep 1000000
done done
[ $ERR_ENV -ne 0 ] && error "INIT_4" "Could not mount $1" && debug_shell [ $ERR_ENV -ne 0 ] && error "INIT_4" "Could not mount $1" && debug_shell
} }