openwrtv4/target/linux/kirkwood/base-files/etc/uci-defaults/01_leds
Luka Perkov 73246d2f64 kirkwood: upgrade to 3.10.15
Signed-off-by: Luka Perkov <luka@openwrt.org>

SVN-Revision: 38402
2013-10-14 19:46:40 +00:00

19 lines
322 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"
;;
*)
;;
esac
ucidef_commit_leds
exit 0