brcm63xx: Use model name for ADB P.DG A4001N1
[openwrt/openwrt.git] / target / linux / brcm63xx / base-files / etc / uci-defaults / 01_leds
1 #!/bin/sh
2 #
3 # Copyright (C) 2013-2014 OpenWrt.org
4 #
5
6 . /lib/functions/uci-defaults.sh
7 . /lib/brcm63xx.sh
8
9 case "$board_name" in
10 963281T_TEF)
11 ucidef_set_led_netdev "lan" "LAN" "A4001N1:green:eth" "eth0"
12 ucidef_set_led_usbdev "usb" "USB" "A4001N1:green:3g" "1-1"
13 ;;
14 'F@ST2704V2')
15 ucidef_set_led_usbdev "usb" "USB" "F@ST2704V2:green:usb" "1-1"
16 ;;
17 esac
18
19 ucidef_commit_leds
20
21 exit 0