summaryrefslogtreecommitdiff
path: root/sources/target_skeleton/etc/init.d/S01mount
blob: 85d3ab5a65c352005aa88c6edd01489c1e3df16b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

# Mount all filesystems.  We don't mess with
# fsck, since we don't need it here...

echo -n "Mounting local file systems: "
/bin/mount -a > /dev/null 2>&1
if [ $? = 0 ] ; then
	echo "ok"
else
	echo "failed"
fi

exit 0