5e04ee773a95368e71ee2738e58f93c41019eb52
[openwrt/openwrt.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
8 board_config_update
9
10 board=$(board_name)
11
12 case "$board" in
13 c2600)
14 ucidef_set_led_usbport "usb1" "USB 1" "${board}:white:usb_2" "usb1-port1" "usb2-port1"
15 ucidef_set_led_usbport "usb2" "USB 2" "${board}:white:usb_4" "usb3-port1" "usb4-port1"
16 ucidef_set_led_switch "wan" "wan" "${board}:white:wan" "switch0" "0x20"
17 ucidef_set_led_switch "lan" "lan" "${board}:white:lan" "switch0" "0x1e"
18 ;;
19 d7800 |\
20 r7500 |\
21 r7500v2 |\
22 r7800)
23 ucidef_set_led_usbport "usb1" "USB 1" "${board}:white:usb1" "usb1-port1" "usb2-port1"
24 ucidef_set_led_usbport "usb2" "USB 2" "${board}:white:usb2" "usb3-port1" "usb4-port1"
25 ucidef_set_led_netdev "wan" "WAN" "${board}:white:wan" "eth0"
26 ucidef_set_led_ide "esata" "eSATA" "${board}:white:esata"
27 ;;
28 fritz4040)
29 ucidef_set_led_wlan "wlan" "WLAN" "$board:green:wlan" "phy0tpt" "phy1tpt"
30 ucidef_set_led_netdev "wan" "WAN" "$board:green:wan" "eth1"
31 ucidef_set_led_switch "lan" "LAN" "${board}:green:lan" "switch0" "0x1e"
32 ;;
33 nbg6817)
34 ucidef_set_led_wlan "wlan2g" "WLAN2G" "$board:amber:wifi2g" "phy1tpt"
35 ucidef_set_led_wlan "wlan5g" "WLAN5G" "$board:amber:wifi5g" "phy0tpt"
36 ucidef_set_led_netdev "wan" "WAN" "$board:white:internet" "eth1"
37 ;;
38 vr2600v)
39 ucidef_set_led_usbport "usb" "USB" "${board}:white:usb" "usb1-port1" "usb2-port1" "usb3-port1" "usb4-port1"
40 ucidef_set_led_switch "lan" "lan" "${board}:white:lan" "switch0" "0x1e"
41 ucidef_set_led_wlan "wlan2g" "WLAN2G" "${board}:white:wlan2g" "phy0tpt"
42 ucidef_set_led_wlan "wlan5g" "WLAN5G" "${board}:white:wlan5g" "phy1tpt"
43 ucidef_set_led_switch "wan" "wan" "${board}:white:wan" "switch0" "0x20"
44 ;;
45 *)
46 ;;
47 esac
48
49 board_config_flush
50
51 exit 0