[package] base-files: Use -h instead of deprecated -L for symlink check
[openwrt.git] / package / base-files / files / etc / init.d / rcS
index 4e72bd9..3b80432 100755 (executable)
@@ -1,19 +1,26 @@
 #!/bin/sh
 # Copyright (C) 2006 OpenWrt.org
 
-${FAILSAFE:+exit}
+run_scripts() {
+       for i in /etc/rc.d/$1*; do
+               [ -x $i ] && $i $2 2>&1
+       done | $LOGGER
+}
 
-# FIXME: add logging configuration
-#[ -f /etc/config/network ] && . /etc/config/network
-#eval $(ipcalc "$log_ipaddr")
-#[ "$log_ipaddr" = "$IP" ] || log_ipaddr=""
-syslogd -C16 #${log_ipaddr:+-L -R $log_ipaddr}
-klogd
+system_config() {
+       config_get_bool foreground $1 foreground 0
+}
 
-(
-       for i in /etc/rc.d/S*; do
-               $i boot 2>&1
-       done 
-       
-       sysctl -p >&-
-) | logger -s -p 6 -t '' &
+LOGGER="cat"
+[ -x /usr/bin/logger ] && LOGGER="logger -s -p 6 -t sysinit"
+
+. /etc/functions.sh
+
+config_load system
+config_foreach system_config system
+
+if [ "$1" = "S" -a "$foreground" != "1" ]; then
+       run_scripts "$1" "$2" &
+else
+       run_scripts "$1" "$2"
+fi
This page took 0.025872 seconds and 4 git commands to generate.