2005-01-16 11:43:02 +00:00
|
|
|
#!/bin/sh
|
2006-06-27 00:36:13 +00:00
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
|
2009-04-30 22:59:18 +00:00
|
|
|
run_scripts() {
|
|
|
|
for i in /etc/rc.d/$1*; do
|
|
|
|
[ -x $i ] && $i $2 2>&1
|
|
|
|
done | $LOGGER
|
|
|
|
}
|
|
|
|
|
2010-04-16 18:14:08 +00:00
|
|
|
system_config() {
|
|
|
|
config_get_bool foreground $1 foreground 0
|
|
|
|
}
|
|
|
|
|
2009-03-18 13:05:18 +00:00
|
|
|
LOGGER="cat"
|
2009-04-21 12:02:34 +00:00
|
|
|
[ -x /usr/bin/logger ] && LOGGER="logger -s -p 6 -t sysinit"
|
2009-03-18 13:05:18 +00:00
|
|
|
|
2010-04-13 19:57:25 +00:00
|
|
|
. /etc/functions.sh
|
|
|
|
|
|
|
|
config_load system
|
2010-04-16 18:14:08 +00:00
|
|
|
config_foreach system_config system
|
2010-04-13 19:57:25 +00:00
|
|
|
|
2010-04-16 18:14:08 +00:00
|
|
|
if [ "$1" = "S" -a "$foreground" != "1" ]; then
|
2009-04-30 22:59:18 +00:00
|
|
|
run_scripts "$1" "$2" &
|
|
|
|
else
|
|
|
|
run_scripts "$1" "$2"
|
|
|
|
fi
|