From: Ulf Samuelsson Date: Thu, 20 Sep 2007 16:43:16 +0000 (-0000) Subject: Use correct board name for ngw100 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aaa144ca5d4af80bfc9435f843de10f486186aec;p=buildroot.git Use correct board name for ngw100 --- 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 0d574e67b0..4d80c251b7 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