diff options
author | blogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-06-28 11:22:05 +0000 |
---|---|---|
committer | blogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-06-28 11:22:05 +0000 |
commit | c119aa7b2fc0ea71efb219227591ee025a250dfa (patch) | |
tree | 9d07fa26f8c11d586c9c7abcb6b5bccb9c16b59c /package/system/ubox/files/fstab.init | |
parent | f6601c3d45862868c204f3ebcb773b646c1f75af (diff) |
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/fstab.init')
-rw-r--r-- | package/system/ubox/files/fstab.init | 14 |
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 +} |