4122af10f9
Support is added only for kernel 3.14 - do not show it until the switch is made. Following uboot env changes are needed to make it work on stock uboot:
28 lines
607 B
Bash
28 lines
607 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2012-2014 OpenWrt.org
|
|
#
|
|
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
case "`cat /proc/device-tree/model`" in
|
|
"Seagate FreeAgent Dockstar")
|
|
ucidef_set_led_default "health" "status:green:health" "1"
|
|
ucidef_set_led_default "fault" "status:orange:fault" "1"
|
|
;;
|
|
"Cloud Engines Pogoplug E02")
|
|
ucidef_set_led_default "health" "status:green:health" "1"
|
|
ucidef_set_led_default "fault" "status:orange:fault" "1"
|
|
;;
|
|
"Linksys EA4500")
|
|
ucidef_set_led_default "health" "ea4500:white:health" "1"
|
|
ucidef_set_led_default "pulse" "ea4500:white:pulse" "1"
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
|
|
ucidef_commit_leds
|
|
|
|
exit 0
|