summaryrefslogtreecommitdiff
path: root/package/base-files/files/etc/init.d/rcS
blob: f9c47e425fa5d46d3f14463e02f9b9a326b84498 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
{
	grep '^#FWINIT ' /etc/init.d/* | \
	    sort -nk2 | \
	    while read line; do
		/bin/sh ${line%%:*} autostart 2>&1
	    done
	test -e /etc/init.d/boot.local && (/bin/sh /etc/init.d/boot.local) 2>&1
} | logger -s -p 6 -t '' &