The qca8k driver is upstream, unlike swconfig. This applies to the mx60 and wndr4700 only. Fixed up LED definitions as well. RTL83xx DSA for WNDAP62300/660 is not working. Signed-off-by: Rosen Penev <rosenp@gmail.com> Link: https://github.com/openwrt/openwrt/pull/14037 Signed-off-by: Robert Marko <robimarko@gmail.com>
33 lines
539 B
Text
33 lines
539 B
Text
|
|
. /lib/functions/system.sh
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
board_config_update
|
|
|
|
board=$(board_name)
|
|
|
|
case "$board" in
|
|
meraki,mr24|\
|
|
wd,mybooklive|\
|
|
wd,mybooklive-duo)
|
|
ucidef_set_interface_lan "eth0" "dhcp"
|
|
;;
|
|
netgear,wndap620)
|
|
ucidef_add_switch "switch0" "2:lan" "5@eth0"
|
|
;;
|
|
netgear,wndap660)
|
|
ucidef_add_switch "switch0" "1:lan" "2:lan" "5@eth0"
|
|
;;
|
|
meraki,mx60|\
|
|
netgear,wndr4700)
|
|
ucidef_set_interfaces_lan_wan "lan1 lan2 lan3 lan4" "wan"
|
|
;;
|
|
|
|
*)
|
|
ucidef_set_interfaces_lan_wan "eth0" "eth1"
|
|
;;
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|