mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 21:38:26 +02:00
e869e415b7
This setup gives us 3.5 distinguishable states: - Solid OFF: Bootloader running, or kernel hung (timer task stalled) - Solid ON: Kernel hung (timer task stalled) - 5Hz blink: preinit - Heartbeat: normal operation Signed-off-by: oliver@opencloud.com git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9666 3c298f89-4303-0410-b956-a3cf2f4a3e73
27 lines
875 B
Bash
27 lines
875 B
Bash
#!/bin/sh
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
|
|
# This setup gives us 3.5 distinguishable states:
|
|
#
|
|
# Solid OFF: Bootloader running, or kernel hung (timer task stalled)
|
|
# Solid ON: Kernel hung (timer task stalled)
|
|
# 5Hz blink: preinit
|
|
# Heartbeat: normal operation
|
|
|
|
set_state() {
|
|
case "$1" in
|
|
preinit)
|
|
[ -d /sys/class/leds/status ] && {
|
|
echo timer >/sys/class/leds/status/trigger
|
|
echo 100 >/sys/class/leds/status/delay_on
|
|
echo 100 >/sys/class/leds/status/delay_off
|
|
}
|
|
;;
|
|
done)
|
|
[ -d /sys/class/leds/status ] && {
|
|
echo heartbeat >/sys/class/leds/status/trigger
|
|
}
|
|
;;
|
|
esac
|
|
}
|