mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
337e36e0ef
Convert each ipq806x device to DSA implementation using the qca8k driver. Rework 02_network to follow the new naming scheme. Update 01_leds to use netdev trigger with correct DSA port and drop now unused switch trigger. Currently secondary CPU is disabled and will be reneabled later. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
46 lines
730 B
Bash
46 lines
730 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2020 OpenWrt.org
|
|
#
|
|
|
|
. /lib/functions.sh
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
board_config_update
|
|
|
|
case "$(board_name)" in
|
|
arris,tr4400-v2 |\
|
|
askey,rt4230w-rev6 |\
|
|
asrock,g10 |\
|
|
buffalo,wxr-2533dhp |\
|
|
compex,wpq864 |\
|
|
nec,wg2600hp |\
|
|
nec,wg2600hp3 |\
|
|
netgear,d7800 |\
|
|
netgear,r7500 |\
|
|
netgear,r7500v2 |\
|
|
netgear,r7800 |\
|
|
netgear,xr450 |\
|
|
netgear,xr500 |\
|
|
nokia,ac400i |\
|
|
qcom,ipq8064-ap148 |\
|
|
qcom,ipq8064-ap161 |\
|
|
qcom,ipq8064-db149 |\
|
|
tplink,ad7200 |\
|
|
tplink,c2600 |\
|
|
tplink,vr2600v |\
|
|
zyxel,nbg6817 |\
|
|
asus,onhub |\
|
|
tplink,onhub)
|
|
ucidef_set_compat_version "1.1"
|
|
;;
|
|
linksys,ea7500-v1 |\
|
|
linksys,ea8500)
|
|
ucidef_set_compat_version "2.1"
|
|
;;
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|