977b3b104ebb3e7bf12d210b76265a790562bc03
[openwrt/staging/lynxis/omap.git] / target / linux / ipq806x / base-files / etc / board.d / 01_leds
1 #!/bin/sh
2 #
3 # Copyright (C) 2015 OpenWrt.org
4 #
5
6 . /lib/functions/uci-defaults.sh
7 . /lib/ipq806x.sh
8
9 board_config_update
10
11 board=$(ipq806x_board_name)
12
13 case "$board" in
14 c2600)
15 ucidef_set_led_usbport "usb1" "USB 1" "${board}:white:usb_2" "usb1-port1" "usb2-port1"
16 ucidef_set_led_usbport "usb2" "USB 2" "${board}:white:usb_4" "usb3-port1" "usb4-port1"
17 ucidef_set_led_switch "wan" "wan" "${board}:white:wan" "switch0" "0x20"
18 ucidef_set_led_switch "lan" "lan" "${board}:white:lan" "switch0" "0x1e"
19 ;;
20 d7800 |\
21 r7500 |\
22 r7500v2 |\
23 r7800)
24 ucidef_set_led_usbport "usb1" "USB 1" "${board}:white:usb1" "usb1-port1" "usb2-port1"
25 ucidef_set_led_usbport "usb2" "USB 2" "${board}:white:usb2" "usb3-port1" "usb4-port1"
26 ucidef_set_led_netdev "wan" "WAN" "${board}:white:wan" "eth0"
27 ucidef_set_led_ide "esata" "eSATA" "${board}:white:esata"
28 ;;
29 nbg6817)
30 ucidef_set_led_wlan "wlan2g" "WLAN2G" "$board:amber:wifi2g" "phy1tpt"
31 ucidef_set_led_wlan "wlan5g" "WLAN5G" "$board:amber:wifi5g" "phy0tpt"
32 ucidef_set_led_netdev "wan" "WAN" "$board:white:internet" "eth1"
33 ;;
34 vr2600v)
35 ucidef_set_led_usbport "usb" "USB" "${board}:white:usb" "usb1-port1" "usb2-port1" "usb3-port1" "usb4-port1"
36 ucidef_set_led_switch "lan" "lan" "${board}:white:lan" "switch0" "0x1e"
37 ucidef_set_led_wlan "wlan2g" "WLAN2G" "${board}:white:wlan2g" "phy0tpt"
38 ucidef_set_led_wlan "wlan5g" "WLAN5G" "${board}:white:wlan5g" "phy1tpt"
39 ucidef_set_led_switch "wan" "wan" "${board}:white:wan" "switch0" "0x20"
40 ;;
41 *)
42 ;;
43 esac
44
45 board_config_flush
46
47 exit 0