Skip to content

Commit

Permalink
realtek: generate compat_version 2.0 for GS1900
Browse files Browse the repository at this point in the history
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: 35acdbe ("realtek: merge Zyxel GS1900 firmware partitions")
Signed-off-by: Sander Vanheule <[email protected]>
  • Loading branch information
svanheule committed Dec 24, 2024
1 parent 4c8bb0a commit a25809a
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions target/linux/realtek/base-files/etc/board.d/05_compat-version
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a25809a

Please sign in to comment.