[source] ipq806x: fix EA8500 switch configuration

LEDE Commits lede-commits at lists.infradead.org
Wed May 3 05:16:13 PDT 2017


jow pushed a commit to source.git, branch lede-17.01:
https://git.lede-project.org/bc0de2751c78fbee90e2e92f403dfa6ca9eb1814

commit bc0de2751c78fbee90e2e92f403dfa6ca9eb1814
Author: Jo-Philipp Wich <jo at mein.io>
AuthorDate: Wed May 3 13:59:55 2017 +0200

    ipq806x: fix EA8500 switch configuration
    
    Do not assign the CPU port twice, this confuses LuCI and possible other
    programs relying on topology information in board.json.
    
    Ref: https://github.com/openwrt/luci/issues/1086
    
    Signed-off-by: Jo-Philipp Wich <jo at mein.io>
---
 target/linux/ipq806x/base-files/etc/board.d/02_network | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/linux/ipq806x/base-files/etc/board.d/02_network b/target/linux/ipq806x/base-files/etc/board.d/02_network
index 8417f0e..d88d777 100755
--- a/target/linux/ipq806x/base-files/etc/board.d/02_network
+++ b/target/linux/ipq806x/base-files/etc/board.d/02_network
@@ -32,7 +32,7 @@ ea8500)
 
 	hw_mac_addr=$(mtd_get_mac_ascii devinfo hw_mac_addr)
 	ucidef_add_switch "switch0" \
-		"1:lan" "2:lan" "3:lan" "4:lan" "0t at eth0" "5:wan" "0t at eth0"
+		"0 at eth0" "1:lan" "2:lan" "3:lan" "4:lan" "5:wan"
 	ucidef_set_interface_macaddr "lan" "$hw_mac_addr"
 	ucidef_set_interface_macaddr "wan" "$hw_mac_addr"
 	;;



More information about the lede-commits mailing list