openwrtv4/target/linux/kirkwood/base-files/etc/uci-defaults/01_leds
Luka Perkov 4122af10f9 kirkwood: add support for Linksys EA4500
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:
2014-05-28 21:43:39 +00:00

27 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