busybox-initramfs:

- use usleep instead sleep
This commit is contained in:
Stephan Raue
2010-04-25 19:08:51 +02:00
parent 53ab2743f6
commit 60de910d27

View File

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