7fddfa08245569303c8914bdcb75682f79df140c
[openwrt/staging/jow.git] / target / linux / layerscape / base-files / etc / board.d / 01_led
1 #
2 # Copyright (C) 2015 OpenWrt.org
3 #
4
5 . /lib/functions/uci-defaults.sh
6
7 board_config_update
8
9 board=$(board_name)
10
11 case "$board" in
12 traverse,ls1043v)
13 ucidef_set_led_netdev "wan" "WAN LED" "ls1043v:yellow:wan" "eth4"
14 ;;
15 traverse,ls1043s)
16 ucidef_set_led_netdev "wan" "WAN LED" "ls1043s:yellow:wan" "eth4"
17 ucidef_set_led_netdev "xgact" "10G Activity" "ls1043s:yellow:10gact" "eth6"
18 ucidef_set_led_netdev "xglink" "10G Link" "ls1043s:green:10glink" "eth6"
19 ;;
20 esac
21
22 board_config_flush
23
24 exit 0