소스 검색

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 <[email protected]>
Chukun Pan 2 년 전
부모
커밋
b25c7548e0
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      target/linux/sunxi/base-files/etc/board.d/01_leds

+ 2 - 2
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