realtek: generate compat_version 2.0 for GS1900

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>
This commit is contained in:
Sander Vanheule 2024-12-24 09:56:11 +01:00
parent 4c8bb0a20f
commit a25809a474

View File

@ -0,0 +1,28 @@
#
# 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