aboutsummaryrefslogtreecommitdiffstats
path: root/package/system/ubox/files
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2013-06-28 11:22:05 +0000
committerJohn Crispin <blogic@openwrt.org>2013-06-28 11:22:05 +0000
commit01bfa22fff3bdcacb5ced6c22e553e8013274b90 (patch)
tree9d07fa26f8c11d586c9c7abcb6b5bccb9c16b59c /package/system/ubox/files
parent908dd9c52f021ed865457174c33d25c817391405 (diff)
downloadmaster-187ad058-01bfa22fff3bdcacb5ced6c22e553e8013274b90.tar.gz
master-187ad058-01bfa22fff3bdcacb5ced6c22e553e8013274b90.tar.bz2
master-187ad058-01bfa22fff3bdcacb5ced6c22e553e8013274b90.zip
ubox: update to latest git revision
* add pivot root support * add back a /etc/init.d/fstab * add "block mount/umount" support * add anonymous swap/mount support * add auto swap/mount support * fix superflous error when inserting modules * add back jffs2reset/jffs2mark Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37057 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/system/ubox/files')
-rw-r--r--package/system/ubox/files/fstab.init14
1 files changed, 14 insertions, 0 deletions
diff --git a/package/system/ubox/files/fstab.init b/package/system/ubox/files/fstab.init
new file mode 100644
index 0000000000..be49470ef1
--- /dev/null
+++ b/package/system/ubox/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
+}