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

IFUP=/sbin/ifup

echo -n "Network interfaces: "
if ${IFUP} -a; then
	echo "done"
else
	echo "failed"
	exit 1
fi