mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-28 06:21:52 +02: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:
parent
400eb4fa18
commit
c755ce9f2a
19
target/linux/ar7-2.6/base-files/default/etc/diag.sh
Normal file
19
target/linux/ar7-2.6/base-files/default/etc/diag.sh
Normal 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
|
||||
}
|
9
target/linux/ar7-2.6/base-files/default/etc/init.d/done
Normal file
9
target/linux/ar7-2.6/base-files/default/etc/init.d/done
Normal 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
|
||||
}
|
Loading…
Reference in New Issue
Block a user