bcm53xx: generate proper network config for Tenda AC9
It's a more complex device with 2 interfaces on the SoC, one we can use for LAN and another for WAN. Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
This commit is contained in:
parent
18eebfe4e5
commit
31fada8bec
1 changed files with 10 additions and 0 deletions
|
@ -8,6 +8,16 @@
|
||||||
board_config_update
|
board_config_update
|
||||||
|
|
||||||
board=$(cat /proc/device-tree/compatible | tr '\0' '\t' | cut -f 1)
|
board=$(cat /proc/device-tree/compatible | tr '\0' '\t' | cut -f 1)
|
||||||
|
|
||||||
|
case "$board" in
|
||||||
|
tenda,ac9)
|
||||||
|
ucidef_add_switch "switch0" \
|
||||||
|
"1:lan" "2:lan" "3:lan" "4:lan" "8@eth0" "0:wan" "5@eth1"
|
||||||
|
board_config_flush
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
case "$board" in
|
case "$board" in
|
||||||
asus,rt-ac87u)
|
asus,rt-ac87u)
|
||||||
ifname=eth1
|
ifname=eth1
|
||||||
|
|
Loading…
Reference in a new issue