mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-27 09:12:39 +00:00
13 lines
174 B
Plaintext
13 lines
174 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# SPDX-License-Identifier: GPL-2.0-only
|
||
|
|
||
|
START=99
|
||
|
|
||
|
boot() {
|
||
|
case $(board_name) in
|
||
|
zyxel,ex5700-telenor)
|
||
|
fw_setenv uboot_bootcount 0
|
||
|
;;
|
||
|
esac
|
||
|
}
|