summaryrefslogtreecommitdiffstats
path: root/target/device/Atmel/atstk100x/target_skeleton/etc/init.d/rcS
blob: a8ea85cdc8c09761a41ed2248693a907498ad5e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

for s in /etc/init.d/S*; do
	if [ -x $s ]; then
		$s start
	fi
done

echo
echo "STK1000 ready"
echo