summaryrefslogtreecommitdiff
path: root/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S49netfs
diff options
context:
space:
mode:
Diffstat (limited to 'target/device/Atmel/atngw100/target_skeleton/etc/init.d/S49netfs')
-rwxr-xr-xtarget/device/Atmel/atngw100/target_skeleton/etc/init.d/S49netfs8
1 files changed, 4 insertions, 4 deletions
diff --git a/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S49netfs b/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S49netfs
index 99782b481..e1e0fbf4f 100755
--- a/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S49netfs
+++ b/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S49netfs
@@ -2,10 +2,10 @@
MOUNT=/bin/mount
-echo -n "Mounting remote filesystems:"
-if ${MOUNT} -t nfs -a > /dev/null 2> /dev/null; then
- echo " done"
+echo -n "Mounting remote filesystems: "
+if ${MOUNT} -t nfs -a; then
+ echo "done"
else
- echo " failed"
+ echo "failed"
exit 1
fi