summaryrefslogtreecommitdiffstats
path: root/package/system/fstools/files/fstab.init
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2014-03-12 19:32:51 +0000
committerJohn Crispin <john@openwrt.org>2014-03-12 19:32:51 +0000
commit0dc9d8d6ffcdbdfda2723676f6ffc825a48a18b7 (patch)
tree0e723f844a2516729ec4ce71273b0e4480d73107 /package/system/fstools/files/fstab.init
parent8411a5703f449a929623b7c41ba8b216685e8018 (diff)
downloadmaster-31e0f0ae-0dc9d8d6ffcdbdfda2723676f6ffc825a48a18b7.tar.gz
master-31e0f0ae-0dc9d8d6ffcdbdfda2723676f6ffc825a48a18b7.tar.bz2
master-31e0f0ae-0dc9d8d6ffcdbdfda2723676f6ffc825a48a18b7.zip
fstools: add the new fstools package
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 39895
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 0000000000..be49470ef1
--- /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
+}