h69k/target/linux/ipq40xx/base-files/etc/init.d/bootcount

23 lines
396 B
Plaintext
Raw Normal View History

2024-09-29 14:35:28 +00:00
#!/bin/sh /etc/rc.common
START=99
boot() {
case $(board_name) in
alfa-network,ap120c-ac)
[ -n "$(fw_printenv bootcount changed 2>/dev/null)" ] &&\
echo -e "bootcount\nchanged\n" | /usr/sbin/fw_setenv -s -
;;
linksys,ea6350v3|\
linksys,ea8300|\
linksys,mr8300|\
linksys,whw01|\
linksys,whw03v2)
mtd resetbc s_env || true
;;
netgear,wac510)
fw_setenv boot_cnt=0
;;
esac
}