8954d69d12c1517669c4cbaccd0fd16a88eca1c3
[openwrt/openwrt.git] / target / linux / kirkwood / 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,audi|\
13 linksys,viper)
14 ucidef_set_compat_version "1.1"
15 ;;
16 esac
17
18 board_config_flush
19
20 exit 0