12 lines
171 B
Bash
Executable file
12 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
|
|
}
|