blob: 5dd9acc15877a79e0ea9fb25b932cf31d26ca63d [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#!/bin/sh /etc/rc.common
2# Copyright (C) 2006 OpenWrt.org
3
4STOP=90
5
6restart() {
7 :
8}
9
10revert_overlay() {
11 #kill all process to release mnt/
12 kill -9 -1
13
14 /bin/umount /overlay/etc
15 /bin/umount /overlay/nvm
16}
17
18stop() {
19 sync
20 revert_overlay
21 /bin/umount -a -d -r
22}