1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-22 09:26:22 +03:00
openwrt-xburst/target/linux/kirkwood/base-files/etc/uci-defaults/leds
juhosg 09f48c381b kirkwood: use the generic uci-default functions for initial LED setup
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31994 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-05-29 16:39:20 +00:00

24 lines
352 B
Bash

#!/bin/sh
#
# Copyright (C) 2012 OpenWrt.org
#
. /lib/fuctions/uci-defaults.sh
. /lib/kirkwood.sh
hardware=$(kirkwood_hardware_name)
case "$hardware" 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