1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-12 23:53:39 +03:00
openwrt-xburst/target/linux/cobalt/base-files/etc/diag.sh
florian 5944a25628 [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
2009-05-31 13:55:35 +00:00

19 lines
568 B
Bash

#!/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
}