mirror of https://github.com/hak5/openwrt.git
24 lines
353 B
Plaintext
24 lines
353 B
Plaintext
|
#!/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
|