SmartAudio/package/system/fstools/files/fstab.init

17 lines
430 B
Plaintext
Raw Normal View History

2018-07-13 01:31:50 +00:00
#!/bin/sh /etc/rc.common
# (C) 2013 openwrt.org
START=40
DEPEND=boot
start() {
echo "this file has been obsoleted. please call \"/sbin/block mount\" directly"
2018-12-13 10:48:25 +00:00
/sbin/block mount &>/dev/kmsg
[ -f /sbin/restorecon ] && restorecon -R /mnt /data
2018-07-13 01:31:50 +00:00
}
stop() {
echo "this file has been obsoleted. please call \"/sbin/block umount\" directly"
2018-12-13 10:48:25 +00:00
/sbin/block umount &>/dev/kmsg
2018-07-13 01:31:50 +00:00
}