summaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/mt7621/base-files/etc/board.d/05_compat-version
blob: d79092f76f7e6d2e2ab819034bd5b1aee11e5356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
#
# Copyright (C) 2020 OpenWrt.org
#

. /lib/functions.sh
. /lib/functions/uci-defaults.sh

board_config_update

case "$(board_name)" in
	*)
		ucidef_set_compat_version "1.1"
		;;
esac

board_config_flush

exit 0