fstab.init 226 B

12345678910111213141516171819202122
  1. #!/bin/sh /etc/rc.common
  2. # SPDX-License-Identifier: GPL-2.0-only
  3. #
  4. # Copyright (C) 2013-2020 OpenWrt.org
  5. START=11
  6. boot() {
  7. /sbin/block mount
  8. }
  9. start() {
  10. return 0
  11. }
  12. restart() {
  13. return 0
  14. }
  15. stop() {
  16. /sbin/block umount
  17. }