kirkwood: switch from uci-defaults to board.d
[openwrt.git] / target / linux / kirkwood / base-files / etc / board.d / 01_leds
diff --git a/target/linux/kirkwood/base-files/etc/board.d/01_leds b/target/linux/kirkwood/base-files/etc/board.d/01_leds
new file mode 100644 (file)
index 0000000..9e84d8b
--- /dev/null
@@ -0,0 +1,51 @@
+#!/bin/sh
+#
+# Copyright (C) 2012-2015 OpenWrt.org
+#
+
+. /lib/functions/uci-defaults-new.sh
+. /lib/kirkwood.sh
+
+board_config_update
+
+board=$(kirkwood_board_name)
+
+case "$board" in
+"dockstar")
+       ucidef_set_led_default "health" "health" "status:green:health" "1"
+       ucidef_set_led_default "fault" "fault" "status:orange:fault" "1"
+       ;;
+"linksys-audi")
+       ucidef_set_led_default "power" "power" "audi:green:power" "1"
+       ;;
+"linksys-viper")
+       ucidef_set_led_default "health" "health" "viper:white:health" "1"
+       ucidef_set_led_default "pulse" "pulse" "viper:white:pulse" "1"
+       ;;
+"goflexhome" | \
+"goflexnet")
+       ucidef_set_led_default "health" "health" "status:green:health" "1"
+       ucidef_set_led_default "fault" "fault" "status:orange:fault" "0"
+       ;;
+"ib62x0")
+       ucidef_set_led_default "health" "health" "ib62x0:green:os" "1"
+       ucidef_set_led_default "fault" "fault" "ib62x0:red:os" "1"
+       ;;
+"pogo_e02")
+       ucidef_set_led_default "health" "health" "pogo_e02:green:health" "1"
+       ucidef_set_led_default "fault" "fault" "pogo_e02:orange:fault" "1"
+       ;;
+"guruplug-server-plus")
+       ucidef_set_led_timer "health" "health" "guruplug:red:health" "200" "800"
+       ;;
+"sheevaplug" | \
+"sheevaplug-esata")
+       ucidef_set_led_timer "health" "health" "sheevaplug:blue:health" "200" "800"
+       ;;
+*)
+       ;;
+esac
+
+board_config_flush
+
+exit 0