summaryrefslogtreecommitdiff
path: root/target/linux/ipq806x/base-files/etc/board.d/01_leds
blob: f9ec88bb34bf54bd1b87d2cc0dc5613f9badc618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/sh
#
# Copyright (C) 2015 OpenWrt.org
#

. /lib/functions/uci-defaults.sh

board_config_update

board=$(board_name)
boardname="${board##*,}"

case "$board" in
c2600)
	ucidef_set_led_usbport "usb1" "USB 1" "${board}:white:usb_2" "usb1-port1" "usb2-port1"
	ucidef_set_led_usbport "usb2" "USB 2" "${board}:white:usb_4" "usb3-port1" "usb4-port1"
	ucidef_set_led_switch "wan" "wan" "${board}:white:wan" "switch0" "0x20"
	ucidef_set_led_switch "lan" "lan" "${board}:white:lan" "switch0" "0x1e"
	;;
d7800 |\
r7500 |\
r7500v2 |\
r7800)
	ucidef_set_led_usbport "usb1" "USB 1" "${board}:white:usb1" "usb1-port1" "usb2-port1"
	ucidef_set_led_usbport "usb2" "USB 2" "${board}:white:usb2" "usb3-port1" "usb4-port1"
	ucidef_set_led_netdev "wan" "WAN" "${board}:white:wan" "eth0"
	ucidef_set_led_ide "esata" "eSATA" "${board}:white:esata"
	;;
fritz4040)
	ucidef_set_led_wlan "wlan" "WLAN" "$board:green:wlan" "phy0tpt" "phy1tpt"
	ucidef_set_led_netdev "wan" "WAN" "$board:green:wan" "eth1"
	ucidef_set_led_switch "lan" "LAN" "${board}:green:lan" "switch0" "0x1e"
	;;
nbg6817)
	ucidef_set_led_wlan "wlan2g" "WLAN2G" "$board:amber:wifi2g" "phy1tpt"
	ucidef_set_led_wlan "wlan5g" "WLAN5G" "$board:amber:wifi5g" "phy0tpt"
	ucidef_set_led_netdev "wan" "WAN" "$board:white:internet" "eth1"
	;;
vr2600v)
	ucidef_set_led_usbport "usb" "USB" "${board}:white:usb" "usb1-port1" "usb2-port1" "usb3-port1" "usb4-port1"
	ucidef_set_led_switch "lan" "lan" "${board}:white:lan" "switch0" "0x1e"
	ucidef_set_led_wlan "wlan2g" "WLAN2G" "${board}:white:wlan2g" "phy0tpt"
	ucidef_set_led_wlan "wlan5g" "WLAN5G" "${board}:white:wlan5g" "phy1tpt"
	ucidef_set_led_switch "wan" "wan" "${board}:white:wan" "switch0" "0x20"
	;;
*)
	;;
esac

board_config_flush

exit 0