mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 09:32:34 +00:00
14 lines
207 B
Bash
Executable File
14 lines
207 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
|
|
boot() {
|
|
case $(board_name) in
|
|
edgecore,eap111|\
|
|
edgecore,eap112)
|
|
bootcount=$(fw_printenv -n bootcount)
|
|
[ "$bootcount" != 0 ] && fw_setenv bootcount 0
|
|
;;
|
|
esac
|
|
}
|