diff options
| author | Christian Schmidbauer | 2025-05-29 09:00:10 +0000 |
|---|---|---|
| committer | David Bauer | 2025-06-22 11:40:28 +0000 |
| commit | 394697b7e4812c70bf8e886248c66939c22ca2d1 (patch) | |
| tree | 9dab575d942d5a13a7f44be8213eb967f04c660a | |
| parent | 05d243637a8b0f2a328f2a999913d54d9c2d673e (diff) | |
| download | openwrt-394697b7e4812c70bf8e886248c66939c22ca2d1.tar.gz | |
ipq806x: fix Extreme Networks AP3935 LAN LED order
Fixes LAN LED "1" to show activity of LAN1 and LAN LED "2" to show
activity of LAN2, not vice versa.
Signed-off-by: Christian Schmidbauer <github@grische.xyz>
(cherry picked from commit f02e614f50f14be8244c2217392a317e046d8b01)
| -rw-r--r-- | target/linux/ipq806x/base-files/etc/board.d/01_leds | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ipq806x/base-files/etc/board.d/01_leds b/target/linux/ipq806x/base-files/etc/board.d/01_leds index c96d5e69c4..60988dec6b 100644 --- a/target/linux/ipq806x/base-files/etc/board.d/01_leds +++ b/target/linux/ipq806x/base-files/etc/board.d/01_leds @@ -34,8 +34,8 @@ edgecore,ecw5410) ucidef_set_led_wlan "wlan5g" "WLAN5G" "green:wlan5g" "phy0tpt" ;; extreme,ap3935) - ucidef_set_led_netdev "wan" "wan" "orange:lan1" "eth1" - ucidef_set_led_netdev "lan" "lan" "orange:lan2" "eth0" + ucidef_set_led_netdev "wan" "wan" "orange:lan1" "eth0" + ucidef_set_led_netdev "lan" "lan" "orange:lan2" "eth1" ;; fortinet,fap-421e) ucidef_set_led_netdev "eth1-100" "ETH1-100" "amber:eth1" "eth0" "link_100" |