You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openwrt/target/linux/kirkwood/base-files/etc/uci-defaults/05_fix-compat-version

17 lines
225 B
Plaintext

#
# Copyright (C) 2020 OpenWrt.org
#
. /lib/functions.sh
case "$(board_name)" in
linksys,e4200-v2|\
linksys,ea3500|\
linksys,ea4500)
uci set system.@system[0].compat_version="1.1"
uci commit system
;;
esac
exit 0