From 4976072037baede0faeaf94362e282f26f19d6af Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sat, 17 Nov 2012 19:29:44 -0500 Subject: init: remove needless workaround for empty rootdelay Adjust the test in poll_device to look for either an unset OR an empty 2nd parameter. Signed-off-by: Dave Reisner --- init | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'init') diff --git a/init b/init index 3351cfc..b375e72 100644 --- a/init +++ b/init @@ -1,4 +1,5 @@ #!/usr/bin/ash + udevd_running=0 if [ -x /usr/bin/systemd-timestamp ]; then @@ -28,11 +29,6 @@ if [ -n "$earlymodules$MODULES" ]; then modprobe -qab ${earlymodules//,/ } $MODULES fi -# If rootdelay is empty or not a non-negative integer, set it to 10 -if [ -z "${rootdelay}" ] || ! [ "${rootdelay}" -ge 0 ]; then - rootdelay=10 -fi - run_hookfunctions 'run_hook' 'hook' $HOOKS # honor the old behavior of break=y as a synonym for break=premount -- cgit v1.2.3-24-g4f1b