mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-28 17:48:58 +00:00
ec49df8692
The GS1900 images have been updated to have a larger firmware partition, bumping the compatibility version to 2.0. However, since this version is generated on first boot and the default was used, these images still advertised 1.0 after a fresh install. Add a new uci-defaults script that will generate the correct version for all affected Zyxel GS1900 devices. Fixes:35acdbe909
("realtek: merge Zyxel GS1900 firmware partitions") Signed-off-by: Sander Vanheule <sander@svanheule.net> (cherry picked from commita25809a474
)
29 lines
468 B
Plaintext
29 lines
468 B
Plaintext
#
|
|
# Copyright (C) 2020 OpenWrt.org
|
|
#
|
|
|
|
. /lib/functions.sh
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
board_config_update
|
|
|
|
case "$(board_name)" in
|
|
zyxel,gs1900-8 | \
|
|
zyxel,gs1900-8hp-v1 | \
|
|
zyxel,gs1900-8hp-v2 | \
|
|
zyxel,gs1900-10hp | \
|
|
zyxel,gs1900-16 | \
|
|
zyxel,gs1900-24e | \
|
|
zyxel,gs1900-24ep | \
|
|
zyxel,gs1900-24hp-v1 | \
|
|
zyxel,gs1900-24hp-v2 | \
|
|
zyxel,gs1900-24-v1 | \
|
|
zyxel,gs1900-48)
|
|
ucidef_set_compat_version "2.0"
|
|
;;
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|