b1318530e3
* 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
14 lines
341 B
Bash
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
|
|
}
|