diff options
Diffstat (limited to 'target/device/Atmel')
-rwxr-xr-x | target/device/Atmel/atngw100/target_skeleton/etc/init.d/rcS | 6 |
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 |