1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-16 07:48:38 +03:00
openwrt-xburst/target/linux/cns21xx/base-files/etc/uci-defaults/leds
juhosg ab5576542a cns21xx: use the generic uci-default functions for initial LED setup
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31996 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-05-29 16:39:22 +00:00

22 lines
395 B
Bash
Executable File

#!/bin/sh
#
# Copyright (C) 2010 OpenWrt.org
#
. /lib/functions/uci-defaults.sh
. /lib/cns21xx.sh
board=$(get_board_name)
case "$board" in
"ns-k330")
ucidef_set_led_netdev "eth_orange" "ETH (orange)" "ns-k330:orange:eth" "eth0"
ucidef_set_led_usbdev "usb1" "USB1" "ns-k330:green:usb1" "1-1"
ucidef_set_led_usbdev "usb2" "USB2" "ns-k330:green:usb2" "1-2"
;;
fi
ucidef_commit_leds
exit 0