mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-30 18:47:06 +00:00
2f2a319f82
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
13 lines
171 B
Bash
Executable File
13 lines
171 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
|
|
start() {
|
|
. /lib/functions.sh
|
|
|
|
local board=$(board_name)
|
|
if [ $board = "samknows,whitebox-v8" ]; then
|
|
fw_setenv bootcount 0
|
|
fi
|
|
}
|