tn3399_openwrt/target/linux/kirkwood/base-files/etc/uci-defaults/01_leds
Luka Perkov e00bc81a56 kirkwood: add userland support for Pogoplug E02
This patch adds the userland support for the Pogoplug E02 by Cloud
Engines, Inc.

Signed-off-by: Felix Kaechele <heffer@fedoraproject.org>

SVN-Revision: 38631
2013-10-31 12:04:04 +00:00

24 lines
473 B
Bash

#!/bin/sh
#
# Copyright (C) 2012-2013 OpenWrt.org
#
. /lib/functions/uci-defaults.sh
case "`cat /proc/device-tree/model`" in
"Seagate FreeAgent DockStar")
ucidef_set_led_netdev "eth0" "dockstar:orange:misc" "eth0"
ucidef_set_led_default "health" "dockstar:green:health" "1"
;;
"Cloud Engines Pogoplug E02")
ucidef_set_led_default "health" "status:green:health" "1"
ucidef_set_led_default "fault" "status:orange:fault" "1"
;;
*)
;;
esac
ucidef_commit_leds
exit 0