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

Add some diagnostic stuff for ar7

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7102 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2007-05-06 08:58:04 +00:00
parent 400eb4fa18
commit c755ce9f2a
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,19 @@
#!/bin/sh
# Copyright (C) 2007 OpenWrt.org
set_led() {
local led="$1"
local state="$2"
[ -d "/sys/class/leds/ar7:$led" ] && echo "$state" > "/sys/class/leds/ar7:$led/brightness"
}
set_state() {
case "$1" in
preinit)
set_led status 1
;;
done)
set_led status 0
;;
esac
}

View File

@ -0,0 +1,9 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2007 OpenWrt.org
START=95
boot() {
# set leds to normal state
. /etc/diag.sh
set_state done
}