summaryrefslogtreecommitdiffstats
path: root/target/device/valka/target_skeleton/etc/rc
blob: 63c7559db782483e877cdbf6dc2b77e591701e65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/ash
. /etc/rc.subr

echo "Running startup scripts..."
for s in /etc/rc.d/*; do
	if [ -x $s ]; then
		$s start
	fi
done

### Run other start scripts (the linux init.d type scripts) ####
echo "Running init.d/ startup scripts..."
for s in /etc/init.d/S*; do
	if [ -x $s ]; then
		$s start
	fi
done

### Run rc.local if it exists ##################################
if [ -x /etc/rc.local ]; then
	echo "Running local startup script..."
	. /etc/rc.local
fi

echo
echo "ValkaSys ready"
echo