log rcS output
[openwrt.git] / openwrt / target / default / target_skeleton / etc / init.d / rcS
1 #!/bin/sh
2 # Start all init scripts in /etc/init.d
3 # executing them in numerical order.
4 #
5 for i in /etc/init.d/S* ;do
6   [ -f "$i" ] && $i start
7 done