diff options
author | BangLang Huang <banglang.huang@foxmail.com> | 2016-12-02 09:33:23 +0800 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2016-12-04 15:51:18 +0100 |
commit | 960c477432475fb672a1c9b696a4419b9b644342 (patch) | |
tree | 0a1ae3ee1bde310b8de3c95f36703649066d365b /target/linux/ramips/base-files | |
parent | 011f2c26f1b62e309f2eac6a3101bfe0a3c76c7e (diff) | |
download | upstream-960c477432475fb672a1c9b696a4419b9b644342.tar.gz upstream-960c477432475fb672a1c9b696a4419b9b644342.tar.bz2 upstream-960c477432475fb672a1c9b696a4419b9b644342.zip |
ramips: Fix led init script for Lenovo Y1/Y1s
This commit fix the led init script for Lenovo Y1 and
Y1S due to the manual and dts file.
Signed-off-by: BangLang Huang <banglang.huang@foxmail.com>
Diffstat (limited to 'target/linux/ramips/base-files')
-rwxr-xr-x | target/linux/ramips/base-files/etc/board.d/01_leds | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/target/linux/ramips/base-files/etc/board.d/01_leds b/target/linux/ramips/base-files/etc/board.d/01_leds index ab077bff13..99720391a0 100755 --- a/target/linux/ramips/base-files/etc/board.d/01_leds +++ b/target/linux/ramips/base-files/etc/board.d/01_leds @@ -339,11 +339,18 @@ wndr3700v5) wt3020) ucidef_set_led_default "power" "power" "$board:blue:power" "0" ;; -y1|\ +y1) + set_usb_led "$board:blue:usb" + ucidef_set_led_netdev "wifi" "WIFI" "$board:blue:wifi" "wlan1" + ucidef_set_led_netdev "wifi5g" "WIFI5G" "$board:blue:wifi5g" "wlan0" + ucidef_set_led_netdev "lan" "LAN" "$board:blue:lan" "eth0.1" "tx rx" + ucidef_set_led_netdev "wan" "WAN" "$board:blue:internet" "eth0.2" "tx rx" + ;; y1s) - ucidef_set_led_default "power" "power" "$board:blue:power" "1" set_usb_led "$board:blue:usb" - set_wifi_led "$board:blue:wifi" + ucidef_set_led_netdev "wifi" "WIFI" "$board:yellow:wifi" "wlan1" + ucidef_set_led_netdev "wifi5g" "WIFI5G" "$board:blue:wifi" "wlan0" + ucidef_set_led_netdev "wan" "WAN" "$board:blue:internet" "eth0.2" "tx rx" ;; zbt-ape522ii) ucidef_set_led_netdev "wlan2g4" "wlan1-link" "$board:green:wlan2g4" "wlan1" |