mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-27 17:18:59 +00:00
18 lines
306 B
Plaintext
18 lines
306 B
Plaintext
|
#!/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
|
||
|
;;
|
||
|
esac
|
||
|
}
|