mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2025-11-03 00:58:40 +00:00
Align the sorting of cases with other targets. Signed-off-by: Christoph Krapp <achterin@gmail.com> Link: https://github.com/openwrt/openwrt/pull/20518 Signed-off-by: Robert Marko <robimarko@gmail.com>
14 lines
207 B
Plaintext
14 lines
207 B
Plaintext
. /lib/functions.sh
|
|
|
|
case "$(board_name)" in
|
|
ezviz,cs-w3-wd1200g-eup|\
|
|
linksys,ea6350v3|\
|
|
linksys,ea8300|\
|
|
linksys,mr8300)
|
|
uci set system.@system[0].compat_version="2.0"
|
|
uci commit system
|
|
;;
|
|
esac
|
|
|
|
exit 0
|