mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-06-16 22:45:29 +08:00
13 lines
157 B
Bash
Executable File
13 lines
157 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
|
|
start() {
|
|
. /lib/functions.sh
|
|
|
|
local board=$(board_name)
|
|
if [ $board = "sk-wb8" ]; then
|
|
fw_setenv bootcount 0
|
|
fi
|
|
}
|