[openwrt/openwrt] mediatek: mt7622: simplify 02_network
LEDE Commits
lede-commits at lists.infradead.org
Sat Mar 16 00:27:46 PDT 2024
981213 pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/fc9bde82f34eb81f9f639f9da8dd7369651d871b
commit fc9bde82f34eb81f9f639f9da8dd7369651d871b
Author: Chukun Pan <amadeus at jmu.edu.cn>
AuthorDate: Tue Jan 16 23:19:02 2024 +0800
mediatek: mt7622: simplify 02_network
Most mt7622 devices use the mt7531 switch, which have been
switched to dsa driver for a long time. So use dsa as the
default configuration and configure these rtl8367s devices
separately. This reduces the amount of code.
Signed-off-by: Chukun Pan <amadeus at jmu.edu.cn>
---
.../mt7622/base-files/etc/board.d/02_network | 21 ++++++---------------
1 file changed, 6 insertions(+), 15 deletions(-)
diff --git a/target/linux/mediatek/mt7622/base-files/etc/board.d/02_network b/target/linux/mediatek/mt7622/base-files/etc/board.d/02_network
index 6c43e46222..6bda6e11f3 100644
--- a/target/linux/mediatek/mt7622/base-files/etc/board.d/02_network
+++ b/target/linux/mediatek/mt7622/base-files/etc/board.d/02_network
@@ -8,19 +8,6 @@ mediatek_setup_interfaces()
local board="$1"
case $board in
- bananapi,bpi-r64|\
- buffalo,wsr-3200ax4s|\
- dlink,eagle-pro-ai-r32-a1|\
- elecom,wrc-x3200gst3|\
- linksys,e8450|\
- linksys,e8450-ubi|\
- mediatek,mt7622-rfb1|\
- mediatek,mt7622-rfb1-ubi|\
- netgear,wax206|\
- reyee,ax3200-e5|\
- ruijie,rg-ew3200gx-pro)
- ucidef_set_interfaces_lan_wan "lan1 lan2 lan3 lan4" wan
- ;;
buffalo,wsr-2533dhp2)
ucidef_add_switch "switch0" \
"0:lan" "1:lan" "2:lan" "3:lan" "4:wan" "6 at eth0"
@@ -28,6 +15,11 @@ mediatek_setup_interfaces()
dlink,eagle-pro-ai-m32-a1)
ucidef_set_interfaces_lan_wan "lan1 lan2" wan
;;
+ elecom,wrc-2533gent|\
+ totolink,a8000ru)
+ ucidef_add_switch "switch0" \
+ "0:lan" "1:lan" "2:lan" "3:lan" "4:wan" "6u at eth0" "5u at eth1"
+ ;;
ubnt,unifi-6-lr*)
ucidef_set_interface_lan "eth0"
;;
@@ -35,8 +27,7 @@ mediatek_setup_interfaces()
ucidef_set_interfaces_lan_wan "lan1 lan2 lan3" wan
;;
*)
- ucidef_add_switch "switch0" \
- "0:lan" "1:lan" "2:lan" "3:lan" "4:wan" "6u at eth0" "5u at eth1"
+ ucidef_set_interfaces_lan_wan "lan1 lan2 lan3 lan4" wan
;;
esac
}
More information about the lede-commits
mailing list