kernel: update linux 3.7 to 3.7.3
[openwrt.git] / target / linux / kirkwood / base-files / etc / uci-defaults / leds
1 #!/bin/sh
2 #
3 # Copyright (C) 2012 OpenWrt.org
4 #
5
6 . /lib/functions/uci-defaults.sh
7 . /lib/kirkwood.sh
8
9 hardware=$(kirkwood_hardware_name)
10
11 case "$hardware" in
12 "Seagate FreeAgent DockStar")
13         ucidef_set_led_netdev "eth0" "dockstar:orange:misc" "eth0"
14         ucidef_set_led_default "health" "dockstar:green:health" "1"
15         ;;
16
17 *)
18         ;;
19 esac
20
21 ucidef_commit_leds
22
23 exit 0