mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-27 06:39:51 +00:00
cb86e313d3
Change permissions of the bootcount init script from old mode 100644 to new mode 100755 to ensure its executability. Fixes: 6cc14bf66aa9 ("filogic: support Telenor branded ZyXEL EX5700") Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
13 lines
174 B
Bash
Executable File
13 lines
174 B
Bash
Executable File
#!/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
|
|
}
|