[source] ipq806x: fix EA8500 switch configuration

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


jow pushed a commit to source.git, branch master:
https://git.lede-project.org/3c3f7cfe4d63a83d06e86133e7d4ecf9b91f1ae5

commit 3c3f7cfe4d63a83d06e86133e7d4ecf9b91f1ae5
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 36e0fb3..bd81a1e 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