aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux
diff options
context:
space:
mode:
authorChukun Pan <amadeus@jmu.edu.cn>2023-10-15 23:18:27 +0800
committerHauke Mehrtens <hauke@hauke-m.de>2023-10-31 00:44:03 +0100
commit982f85914479570d11afd98a5b2a362661da0e6c (patch)
treefcdadba9c0a977198a6f6ece04082b57f00b5ede /target/linux
parent64ab02aff86839dad65d97d38ed302c73b22ad40 (diff)
downloadupstream-982f85914479570d11afd98a5b2a362661da0e6c.tar.gz
upstream-982f85914479570d11afd98a5b2a362661da0e6c.tar.bz2
upstream-982f85914479570d11afd98a5b2a362661da0e6c.zip
sunxi: fixes led for nanopi boards
Kernel 5.15 already supports the NanoPi R1 and NanoPi R1S H5, and they use new LED bindings that do not match the existing settings in 01_leds. Update led settings to fixes that. List the led node on NanoPi R1S H5: root@OpenWrt:~# ls /sys/class/leds/ green:lan green:wan red:status Signed-off-by: Chukun Pan <amadeus@jmu.edu.cn> (cherry picked from commit b25c7548e07ad8775f8511ba8276bf3ecb4409ba)
Diffstat (limited to 'target/linux')
-rw-r--r--target/linux/sunxi/base-files/etc/board.d/01_leds4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/sunxi/base-files/etc/board.d/01_leds b/target/linux/sunxi/base-files/etc/board.d/01_leds
index 60783363de..da94e40373 100644
--- a/target/linux/sunxi/base-files/etc/board.d/01_leds
+++ b/target/linux/sunxi/base-files/etc/board.d/01_leds
@@ -9,8 +9,8 @@ board_config_update
case $board in
friendlyarm,nanopi-r1|\
friendlyarm,nanopi-r1s-h5)
- ucidef_set_led_netdev "wan" "WAN" "nanopi:green:wan" "eth0"
- ucidef_set_led_netdev "lan" "LAN" "nanopi:green:lan" "eth1"
+ ucidef_set_led_netdev "wan" "WAN" "green:wan" "eth0"
+ ucidef_set_led_netdev "lan" "LAN" "green:lan" "eth1"
;;
esac