kumquat-buildroot/target/device/Atmel/atstk1005/target_skeleton/etc/init.d/S49netfs

12 lines
141 B
Plaintext
Raw Normal View History

2008-12-20 23:24:11 +01:00
#!/bin/sh
MOUNT=/bin/mount
echo -n "Mounting remote filesystems: "
if ${MOUNT} -t nfs -a; then
echo "done"
else
echo "failed"
exit 1
fi