You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openwrt/package/system/fstools/files/fstab.init

17 lines
215 B
Bash

#!/bin/sh /etc/rc.common
# (C) 2013 openwrt.org
START=40
boot() {
/sbin/block mount
}
start() {
echo "this file has been obsoleted. please call \"/sbin/block mount\" directly"
}
stop() {
/sbin/block umount
}