blob: 6646b7e5e7b1b050960c8cf65546d136581860e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
. /lib/functions.sh
case "$(board_name)" in
jjplus,ja76pf2|\
meraki,mr12|\
meraki,mr16|\
ubnt,routerstation|\
ubnt,routerstation-pro)
uci set system.@system[0].compat_version="2.0"
uci commit system
;;
esac
exit 0
|