diff options
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 +} |