diff options
author | John Crispin <john@openwrt.org> | 2013-06-28 11:22:05 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2013-06-28 11:22:05 +0000 |
commit | b1318530e386827cbf83417cefa89f1d29b28721 (patch) | |
tree | db2b6e94da7caa8d880d1405137fe690b37f58bf /package/system/ubox/files | |
parent | c4f5b5d0d5d6eefc3324c2234cec3615f50b526f (diff) | |
download | upstream-b1318530e386827cbf83417cefa89f1d29b28721.tar.gz upstream-b1318530e386827cbf83417cefa89f1d29b28721.tar.bz2 upstream-b1318530e386827cbf83417cefa89f1d29b28721.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>
SVN-Revision: 37057
Diffstat (limited to 'package/system/ubox/files')
-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 +} |