diff options
| author | Florian Maurer | 2025-01-16 08:29:55 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-01-20 21:00:24 +0000 |
| commit | 3f4c175851a5abb416f8d18eab20f98c014b8bf1 (patch) | |
| tree | aaee3c82aa68277bc277769fab58ee4ace0d3f05 | |
| parent | baa0fc8e042969afa575c4fd4fd4ce9bac8cd96f (diff) | |
| download | openwrt-3f4c175851a5abb416f8d18eab20f98c014b8bf1.tar.gz | |
mediatek-filogic: fix wax220 wifi leds
The WAX220 does have a 2.4GHz and 5GHz wifi led, which was set to trigger on netdev before.
This commit changes this to trigger on activity of the respective radio
Signed-off-by: Florian Maurer <f.maurer@outlook.de>
Link: https://github.com/openwrt/openwrt/pull/17627
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit 99431e315039d7f9689b21a8aa220adadf52a886)
| -rw-r--r-- | target/linux/mediatek/dts/mt7986b-netgear-wax220.dts | 2 | ||||
| -rw-r--r-- | target/linux/mediatek/filogic/base-files/etc/board.d/01_leds | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/mediatek/dts/mt7986b-netgear-wax220.dts b/target/linux/mediatek/dts/mt7986b-netgear-wax220.dts index 6e51d88470..9537afba89 100644 --- a/target/linux/mediatek/dts/mt7986b-netgear-wax220.dts +++ b/target/linux/mediatek/dts/mt7986b-netgear-wax220.dts @@ -67,6 +67,7 @@ wlan2g_blue { gpios = <&pio 1 GPIO_ACTIVE_LOW>; label = "blue:wlan2g"; + linux,default-trigger = "phy0tpt"; }; lan_green { @@ -84,6 +85,7 @@ wlan5g_blue { gpios = <&pio 2 GPIO_ACTIVE_LOW>; label = "blue:wlan5g"; + linux,default-trigger = "phy1tpt"; }; }; }; diff --git a/target/linux/mediatek/filogic/base-files/etc/board.d/01_leds b/target/linux/mediatek/filogic/base-files/etc/board.d/01_leds index 168909cf90..5048e9bb8f 100644 --- a/target/linux/mediatek/filogic/base-files/etc/board.d/01_leds +++ b/target/linux/mediatek/filogic/base-files/etc/board.d/01_leds @@ -58,8 +58,6 @@ mercusys,mr90x-v1-ubi) ;; netgear,wax220) ucidef_set_led_netdev "eth0" "LAN" "green:lan" "eth0" - ucidef_set_led_netdev "wlan2g" "WLAN2G" "blue:wlan2g" "phy0-ap0" - ucidef_set_led_netdev "wlan5g" "WLAN5G" "blue:wlan5g" "phy1-ap0" ;; nokia,ea0326gmp) ucidef_set_led_netdev "wan" "WAN" "green:wan" "eth1" "link" |