mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-06 10:53:10 +02:00
676c017ecf
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3588 3c298f89-4303-0410-b956-a3cf2f4a3e73
13 lines
332 B
Bash
Executable File
13 lines
332 B
Bash
Executable File
#!/bin/sh
|
|
${FAILSAFE:+exit}
|
|
|
|
[ -f /etc/config/network ] && . /etc/config/network
|
|
eval $(ipcalc "$log_ipaddr")
|
|
[ "$log_ipaddr" = "$IP" ] || log_ipaddr=""
|
|
syslogd -C 16 ${log_ipaddr:+-L -R $log_ipaddr}
|
|
klogd
|
|
#${FAILSAFE:+telnetd -l /bin/login; ifup lan; exit}
|
|
for i in /etc/init.d/S*; do
|
|
$i start 2>&1
|
|
done | logger -s -p 6 -t '' &
|