From dd69fb66b92a88f8a9340fbd9c504e878932c12e Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Thu, 27 Dec 2007 17:17:37 +0000 Subject: Fix RC_COLDPLUG shim for real. --- sh.Linux/init.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sh.Linux/init.sh b/sh.Linux/init.sh index eb7659d3..962d30a7 100755 --- a/sh.Linux/init.sh +++ b/sh.Linux/init.sh @@ -135,7 +135,11 @@ KV_to_int() { # Compat shim for udev rc_coldplug=${rc_coldplug:-${RC_COLDPLUG:-yes}} -RC_COLDPLUG=${rc_coldplug} +if yesno "${rc_coldplug}"; then + RC_COLDPLUG=yes +else + RC_COLDPLUG=no +fi # Set the console loglevel to 1 for a cleaner boot # the logger should anyhow dump the ring-0 buffer at start to the -- cgit v1.2.3