summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
Diffstat (limited to 'target')
-rwxr-xr-xtarget/device/Atmel/atngw100/target_skeleton/etc/init.d/rcS6
1 files changed, 4 insertions, 2 deletions
diff --git a/target/device/Atmel/atngw100/target_skeleton/etc/init.d/rcS b/target/device/Atmel/atngw100/target_skeleton/etc/init.d/rcS
index 0d574e67b..4d80c251b 100755
--- a/target/device/Atmel/atngw100/target_skeleton/etc/init.d/rcS
+++ b/target/device/Atmel/atngw100/target_skeleton/etc/init.d/rcS
@@ -1,9 +1,11 @@
#!/bin/sh
for s in /etc/init.d/S*; do
- $s start
+ if [ -x $s ]; then
+ $s start
+ fi
done
echo
-echo "STK1000 ready"
+echo "NGW100 ready"
echo