1
0

fstab.init 169 B

1234567891011121314151617181920
  1. #!/bin/sh /etc/rc.common
  2. # (C) 2013 openwrt.org
  3. START=40
  4. boot() {
  5. /sbin/block mount
  6. }
  7. start() {
  8. return 0
  9. }
  10. restart() {
  11. return 0
  12. }
  13. stop() {
  14. /sbin/block umount
  15. }