mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-06 11:09:31 +00:00
21 lines
251 B
Plaintext
21 lines
251 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (C) 2020 OpenWrt.org
|
||
|
#
|
||
|
|
||
|
. /lib/functions.sh
|
||
|
. /lib/functions/uci-defaults.sh
|
||
|
|
||
|
board_config_update
|
||
|
|
||
|
case "$(board_name)" in
|
||
|
linksys,audi|\
|
||
|
linksys,viper)
|
||
|
ucidef_set_compat_version "1.1"
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
board_config_flush
|
||
|
|
||
|
exit 0
|