openwrtv3/package/system/ubox/files/fstab.init
John Crispin b1318530e3 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
2013-06-28 11:22:05 +00:00

14 lines
341 B
Bash

#!/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
}