mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-28 09:39:00 +00:00
0cfdc7d446
SPDX moved from GPL-2.0 to GPL-2.0-only and from GPL-2.0+ to GPL-2.0-or-later. Reflect that in the SPDX license headers. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
14 lines
170 B
Bash
Executable File
14 lines
170 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
START=99
|
|
|
|
boot() {
|
|
case $(board_name) in
|
|
glinet,gl-ar300m-nand)
|
|
fw_setenv bootcount 0
|
|
;;
|
|
esac
|
|
}
|