1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-07 17:13:16 +03:00

[cobalt] add diag.sh to report boot status on the front-led of the machine

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16233 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2009-05-31 13:55:35 +00:00
parent e1e2d41352
commit 5944a25628

View File

@ -0,0 +1,18 @@
#!/bin/sh
# Copyright (C) 2009 OpenWrt.org
set_state() {
case "$1" in
preinit)
[ -d /sys/class/leds/qube-front ] && {
echo none > /sys/class/leds/qube-front/trigger
echo 255 > /sys/class/leds/qube-front/brightness
}
;;
done)
[ -d /sys/class/leds/qube-front ] && {
echo 0 > /sys/class/leds/qube-front/brightness
}
;;
esac
}