0
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2025-11-03 00:58:40 +00:00
Files
openwrt/target/linux/ipq40xx/base-files/etc/uci-defaults/05_fix-compat-version
Christoph Krapp 5983bc3136 ipq40xx: fix sorting in base-files
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>
2025-10-24 11:47:12 +02:00

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