blob: a6b8fac1d9e4d12293a8f78cc2f1d49b89635811 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/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
}
|