mvebu: increase compat version for SolidRun ClearFog Base
[openwrt/staging/wigyori.git] / target / linux / mvebu / cortexa9 / base-files / etc / board.d / 05_compat-version
1 #!/bin/sh
2 #
3 # Copyright (C) 2020 OpenWrt.org
4 #
5
6 . /lib/functions.sh
7 . /lib/functions/uci-defaults.sh
8
9 board_config_update
10
11 case "$(board_name)" in
12 linksys,wrt1200ac|\
13 linksys,wrt1900ac-v1|\
14 linksys,wrt1900ac-v2|\
15 linksys,wrt1900acs|\
16 linksys,wrt3200acm|\
17 linksys,wrt32x|\
18 solidrun,clearfog-base-a1|\
19 solidrun,clearfog-pro-a1)
20 ucidef_set_compat_version "1.1"
21 ;;
22 esac
23
24 board_config_flush
25
26 exit 0