Bump compat version to 3.0 for TP-Link RE355 v1, RE450 v1 and RE450 v2. Was missed for 25.12; users upgrading from older images need sysupgrade -F. Signed-off-by: Ivan Diaz <diaz.it@icloud.com> Link: https://github.com/openwrt/openwrt/pull/22185 Signed-off-by: Robert Marko <robimarko@gmail.com>
26 lines
392 B
Plaintext
26 lines
392 B
Plaintext
#
|
|
# Copyright (C) 2020 OpenWrt.org
|
|
#
|
|
|
|
. /lib/functions.sh
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
board_config_update
|
|
|
|
case "$(board_name)" in
|
|
tplink,tl-wpa8630p-v2-int|\
|
|
tplink,tl-wpa8630p-v2.0-eu|\
|
|
tplink,tl-wpa8630p-v2.1-eu)
|
|
ucidef_set_compat_version "2.0"
|
|
;;
|
|
tplink,re355-v1|\
|
|
tplink,re450-v1|\
|
|
tplink,re450-v2)
|
|
ucidef_set_compat_version "3.0"
|
|
;;
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|