1
0

fstab.init 215 B

12345678910111213141516
  1. #!/bin/sh /etc/rc.common
  2. # (C) 2013 openwrt.org
  3. START=40
  4. boot() {
  5. /sbin/block mount
  6. }
  7. start() {
  8. echo "this file has been obsoleted. please call \"/sbin/block mount\" directly"
  9. }
  10. stop() {
  11. /sbin/block umount
  12. }