summaryrefslogtreecommitdiffstats
path: root/target/linux/apm821xx/base-files/etc/uci-defaults/05_fix-compat-version
blob: 0be0b6112a3e4765a3024105e07715a7aa6073f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
. /lib/functions.sh

case "$(board_name)" in
meraki,mx60|\
netgear,wndap620|\
netgear,wndap660)
	uci set system.@system[0].compat_version="2.0"
	uci commit system
	;;
esac

exit 0