mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 00:41:17 +00:00
374cae9e6f
Signed-off-by: Andrew Yong <me@ndoo.sg>
12 lines
159 B
Bash
Executable File
12 lines
159 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
. /lib/ramips.sh
|
|
|
|
START=99
|
|
|
|
start() {
|
|
local board=$(ramips_board_name)
|
|
if [ $board = "sk-wb8" ]; then
|
|
fw_setenv bootcount 0
|
|
fi
|
|
}
|