summaryrefslogtreecommitdiffstats
path: root/target/linux/ipq40xx/base-files/etc/init.d/bootcount
blob: b9d625e29680fe32bad30dd2ae524001698b9d5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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)
		mtd resetbc s_env || true
		;;
	esac
}