Skip to content

Commit

Permalink
ath79: fix wndr4500v3 lan port order to match case
Browse files Browse the repository at this point in the history
The LED and LAN port numbering on the case of wndr4500v3 devices are
reversed relative to the wndr4300v2. I created this patch to so that the
ordering in OpenWRT will be consistent with that.

Signed-off-by: Graham Cole <diakka@gmail.com>
  • Loading branch information
moltencrux authored and mans0n committed Feb 20, 2022
1 parent 125b9ae commit e282e50
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions target/linux/ath79/nand/base-files/etc/board.d/02_network
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,14 @@ ath79_setup_interfaces()
netgear,wndr3700-v4|\
netgear,wndr4300|\
netgear,wndr4300sw|\
netgear,wndr4300-v2|\
netgear,wndr4500-v3)
netgear,wndr4300-v2)
ucidef_add_switch "switch0" \
"0@eth0" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5:wan"
;;
netgear,wndr4500-v3)
ucidef_add_switch "switch0" \
"0@eth0" "1:lan" "2:lan" "3:lan" "4:lan" "5:wan"
;;
netgear,wndr4300tn)
ucidef_add_switch "switch0" \
"0@eth0" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1"
Expand Down

0 comments on commit e282e50

Please sign in to comment.