mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-06 05:40:36 +02:00
09f48c381b
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31994 3c298f89-4303-0410-b956-a3cf2f4a3e73
24 lines
352 B
Bash
24 lines
352 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2012 OpenWrt.org
|
|
#
|
|
|
|
. /lib/fuctions/uci-defaults.sh
|
|
. /lib/kirkwood.sh
|
|
|
|
hardware=$(kirkwood_hardware_name)
|
|
|
|
case "$hardware" in
|
|
"Seagate FreeAgent DockStar")
|
|
ucidef_set_led_netdev "eth0" "dockstar:orange:misc" "eth0"
|
|
ucidef_set_led_default "health" "dockstar:green:health" "1"
|
|
;;
|
|
|
|
*)
|
|
;;
|
|
esac
|
|
|
|
ucidef_commit_leds
|
|
|
|
exit 0
|