summaryrefslogtreecommitdiff
path: root/sources/target_skeleton/etc/init.d/S01mount
diff options
context:
space:
mode:
Diffstat (limited to 'sources/target_skeleton/etc/init.d/S01mount')
-rwxr-xr-xsources/target_skeleton/etc/init.d/S01mount16
1 files changed, 0 insertions, 16 deletions
diff --git a/sources/target_skeleton/etc/init.d/S01mount b/sources/target_skeleton/etc/init.d/S01mount
deleted file mode 100755
index 45d0e7bca..000000000
--- a/sources/target_skeleton/etc/init.d/S01mount
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/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 / -o remount,rw > /dev/null 2>&1
-/bin/mount -a > /dev/null 2>&1
-if [ $? = 0 ] ; then
- echo "ok"
-else
- echo "failed"
-fi
-
-exit 0
-