openwrt/target/linux/mediatek/mt7629/base-files/etc/init.d/bootcount

21 lines
359 B
Bash
Executable File

#!/bin/sh /etc/rc.common
# SPDX-License-Identifier: GPL-2.0-only
START=99
boot() {
case $(board_name) in
iptime,a6004mx)
if [ `fw_printenv boot_sector` = "boot_sector=B" ]; then
echo "bootcount: boot_sector must be A. Rebooting..."
fw_setenv boot_sector A
reboot
exit 1
fi
;;
linksys,ea7500-v3)
mtd resetbc s_env || true
;;
esac
}