diff options
Diffstat (limited to 'target/linux/ar7/base-files/etc/.svn')
-rw-r--r-- | target/linux/ar7/base-files/etc/.svn/entries | 71 | ||||
-rw-r--r-- | target/linux/ar7/base-files/etc/.svn/text-base/diag.sh.svn-base | 42 |
2 files changed, 113 insertions, 0 deletions
diff --git a/target/linux/ar7/base-files/etc/.svn/entries b/target/linux/ar7/base-files/etc/.svn/entries new file mode 100644 index 0000000..be9dc1e --- /dev/null +++ b/target/linux/ar7/base-files/etc/.svn/entries @@ -0,0 +1,71 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/target/linux/ar7/base-files/etc +svn://svn.openwrt.org/openwrt + + + +2013-02-18T10:37:43.874011Z +35659 +florian + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +config +dir + +init.d +dir + +uci-defaults +dir + +diag.sh +file + + + + +2013-03-17T12:12:20.000000Z +9be56b5d862ab93c98e65758c30627b7 +2013-02-18T10:37:43.874011Z +35659 +florian + + + + + + + + + + + + + + + + + + + + + +1006 + diff --git a/target/linux/ar7/base-files/etc/.svn/text-base/diag.sh.svn-base b/target/linux/ar7/base-files/etc/.svn/text-base/diag.sh.svn-base new file mode 100644 index 0000000..37eed6a --- /dev/null +++ b/target/linux/ar7/base-files/etc/.svn/text-base/diag.sh.svn-base @@ -0,0 +1,42 @@ +#!/bin/sh +# Copyright (C) 2007-2013 OpenWrt.org + +# This setup gives us 4.5 distinguishable states: +# +# (1-LED) Solid OFF: Bootloader running, or kernel hung (timer task stalled) +# (1-LED) Solid ON: Kernel hung (timer task stalled) +# (2-LED) Solid RED: Bootloader running, or kernel hung (timer task stalled) +# (2-LED) Solid YELLOW: Kernel hung (timer task stalled) +# 5Hz blink: preinit +# 10Hz blink: failsafe +# (1-LED) Heartbeat: normal operation +# (2-LED) Solid GREEN: normal operation + +. /lib/functions/leds.sh + +get_status_led() { + [ -d "/sys/class/leds/status" ] && status_led="status" + [ -d "/sys/class/leds/power:green" ] && status_led="power:green" +} + +set_state() { + get_status_led + + case "$1" in + preinit) + status_led_set_timer 100 100 + ;; + failsafe) + status_led_set_timer 50 50 + ;; + done) + [ "$status_led" = "status" ] && { + status_led_set_heartbeat + } + [ "$status_led" = "power:green" ] && { + status_led_set_on + led_off "power:red" + } + ;; + esac +} |