tn3399_openwrt/package/system/fstools/files/fstab.init
John Crispin 0dc9d8d6ff fstools: add the new fstools package
Signed-off-by: John Crispin <blogic@openwrt.org>

SVN-Revision: 39895
2014-03-12 19:32:51 +00:00

15 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
}