2013-06-28 11:22:05 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
2021-06-26 11:04:49 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
#
|
|
|
|
# Copyright (C) 2013-2020 OpenWrt.org
|
2013-06-28 11:22:05 +00:00
|
|
|
|
2021-06-26 11:04:49 +00:00
|
|
|
START=11
|
2013-06-28 11:22:05 +00:00
|
|
|
|
2016-06-12 01:10:28 +00:00
|
|
|
boot() {
|
2013-06-28 11:22:05 +00:00
|
|
|
/sbin/block mount
|
|
|
|
}
|
|
|
|
|
2016-06-12 01:10:28 +00:00
|
|
|
start() {
|
2019-08-28 10:26:53 +00:00
|
|
|
return 0
|
2016-06-12 01:10:28 +00:00
|
|
|
}
|
|
|
|
|
2019-06-05 11:18:41 +00:00
|
|
|
restart() {
|
2019-08-28 10:26:53 +00:00
|
|
|
return 0
|
2019-06-05 11:18:41 +00:00
|
|
|
}
|
|
|
|
|
2016-06-12 01:10:28 +00:00
|
|
|
stop() {
|
2013-06-28 11:22:05 +00:00
|
|
|
/sbin/block umount
|
|
|
|
}
|