aboutsummaryrefslogtreecommitdiffstats
path: root/package/system/fstools/files/fstab.init
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2014-03-12 19:32:51 +0000
committerJohn Crispin <blogic@openwrt.org>2014-03-12 19:32:51 +0000
commit2b77148377660a48e047f0ef626ca16c8df286fe (patch)
tree3f37e0752f9e67f7620b9dae11be8a5259e029c0 /package/system/fstools/files/fstab.init
parent3b45a0d59f2236ba21f7671b4416b01e5b1b82a8 (diff)
downloadupstream-2b77148377660a48e047f0ef626ca16c8df286fe.tar.gz
upstream-2b77148377660a48e047f0ef626ca16c8df286fe.tar.bz2
upstream-2b77148377660a48e047f0ef626ca16c8df286fe.zip
fstools: add the new fstools package
Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39895 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/system/fstools/files/fstab.init')
-rw-r--r--package/system/fstools/files/fstab.init14
1 files changed, 14 insertions, 0 deletions
diff --git a/package/system/fstools/files/fstab.init b/package/system/fstools/files/fstab.init
new file mode 100644
index 00000000000..be49470ef1d
--- /dev/null
+++ b/package/system/fstools/files/fstab.init
@@ -0,0 +1,14 @@
+#!/bin/sh /etc/rc.common
+# (C) 2013 openwrt.org
+
+START=40
+
+start() {
+ echo "this file has been obseleted. please call \"/sbin/block mount\" directly"
+ /sbin/block mount
+}
+
+stop() {
+ echo "this file has been obseleted. please call \"/sbin/block umount\" directly"
+ /sbin/block umount
+}