rcS: wait for init scripts to complete before initiating the shutdown (patch from...
[openwrt.git] / package / base-files / files / etc / init.d / boot
index b03209d..12226be 100755 (executable)
@@ -20,8 +20,8 @@ system_config() {
        config_get log_ip "$cfg" log_ip 
        config_get log_size "$cfg" log_size
        config_get log_port "$cfg" log_port
-       syslogd -C${log_size:-16} ${log_ip:+-L -R $log_ip${log_port:+:$log_port}}
-       klogd
+       [ -x /sbin/syslogd ] && syslogd -C${log_size:-16} ${log_ip:+-L -R $log_ip${log_port:+:$log_port}}
+       [ -x /sbin/klogd ] && klogd
 }
 
 apply_uci_config() {(
@@ -52,7 +52,7 @@ start() {
 
        killall -q hotplug2
        [ -x /sbin/hotplug2 ] && /sbin/hotplug2 --override --persistent \
-                       --max-children 1 --no-coldplug &
+                       --max-children 1 --no-coldplug >/dev/null 2>&1 &
 
        # the coldplugging of network interfaces needs to happen later, so we do it manually here
        for iface in $(awk -F: '/:/ {print $1}' /proc/net/dev); do