kumquat-buildroot/target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S15localfs

12 lines
159 B
Plaintext
Raw Normal View History

2007-07-29 09:15:35 +02:00
#!/bin/sh
MOUNT=/bin/mount
echo -n "Mounting local filesystems:"
if ${MOUNT} -a > /dev/null 2> /dev/null; then
echo " done"
else
echo " failed"
exit 1
fi