From: Walter Sonius Date: Fri, 27 Dec 2019 11:41:35 +0000 (+0100) Subject: brcm47xx: fix switch port order for Netgear WN2500RP V1 X-Git-Tag: v21.02.0-rc1~3993 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=098cbc68ee23db589ed6f0d081fe26cc385462f2;hp=9e799f3eee9878bc8240f1de06d4eabdea7a2093 brcm47xx: fix switch port order for Netgear WN2500RP V1 The Netgear WN2500RP V1 switch0 already works for LAN however the port order for the LAN ports is inverted. Correct physical port order watched from the back of the device is: 4 / 3 / 2 / 1 WAN port is absent on this device and therefore removed from switch config. Signed-off-by: Walter Sonius [move block to maintain alphabetic sorting] Signed-off-by: Adrian Schmutzler --- diff --git a/target/linux/brcm47xx/base-files/etc/board.d/01_network b/target/linux/brcm47xx/base-files/etc/board.d/01_network index 99755700ff..e6311d8139 100755 --- a/target/linux/brcm47xx/base-files/etc/board.d/01_network +++ b/target/linux/brcm47xx/base-files/etc/board.d/01_network @@ -177,6 +177,11 @@ configure_by_model() { "0:wan" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "8@eth0" ;; + "Netgear WN2500RP V1") + ucidef_add_switch "switch0" \ + "0:lan:4" "1:lan:3" "2:lan:2" "3:lan:1" "5@eth0" + ;; + *) configure_by_boardtype "$boardtype" "$boardnum" ;;