f12a32630f
Use the generic function instead ot the target specific ones. Signed-off-by: Mathias Kresin <dev@kresin.me>
12 lines
157 B
Bash
Executable file
12 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
|
|
}
|