diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2013-01-18 12:42:53 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2013-01-18 12:42:53 +0000 |
commit | 3a2cccda2eb45c6b55ef33c73a4af2c88935f383 (patch) | |
tree | 42f8f7a8c928a04176ec598da4684b0d778e216d /target/linux/kirkwood/base-files/etc/uci-defaults/01_leds | |
parent | 0de21d9747688e37cc9a9fb92c41abcdde9ef09f (diff) | |
download | mtk-20170518-3a2cccda2eb45c6b55ef33c73a4af2c88935f383.zip mtk-20170518-3a2cccda2eb45c6b55ef33c73a4af2c88935f383.tar.gz mtk-20170518-3a2cccda2eb45c6b55ef33c73a4af2c88935f383.tar.bz2 |
all targets: use numerically prefixed uci-defaults file names to better control order of execution
SVN-Revision: 35217
Diffstat (limited to 'target/linux/kirkwood/base-files/etc/uci-defaults/01_leds')
-rw-r--r-- | target/linux/kirkwood/base-files/etc/uci-defaults/01_leds | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/target/linux/kirkwood/base-files/etc/uci-defaults/01_leds b/target/linux/kirkwood/base-files/etc/uci-defaults/01_leds new file mode 100644 index 0000000..18ac43c --- /dev/null +++ b/target/linux/kirkwood/base-files/etc/uci-defaults/01_leds @@ -0,0 +1,23 @@ +#!/bin/sh +# +# Copyright (C) 2012 OpenWrt.org +# + +. /lib/functions/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 |