You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
353 B
24 lines
353 B
13 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (C) 2012 OpenWrt.org
|
||
|
#
|
||
|
|
||
13 years ago
|
. /lib/functions/uci-defaults.sh
|
||
13 years ago
|
. /lib/kirkwood.sh
|
||
|
|
||
|
hardware=$(kirkwood_hardware_name)
|
||
|
|
||
|
case "$hardware" in
|
||
|
"Seagate FreeAgent DockStar")
|
||
13 years ago
|
ucidef_set_led_netdev "eth0" "dockstar:orange:misc" "eth0"
|
||
|
ucidef_set_led_default "health" "dockstar:green:health" "1"
|
||
13 years ago
|
;;
|
||
|
|
||
|
*)
|
||
|
;;
|
||
|
esac
|
||
|
|
||
13 years ago
|
ucidef_commit_leds
|
||
13 years ago
|
|
||
|
exit 0
|