1c80d9f21d
Signed-off-by: Martin Mueller <mm@sig21.net> SVN-Revision: 32343
24 lines
353 B
Bash
24 lines
353 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2012 OpenWrt.org
|
|
#
|
|
|
|
. /lib/functions/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
|