Add some diagnostic stuff for ar7
SVN-Revision: 7102
This commit is contained in:
parent
c370bf0e5e
commit
c961eac32d
2 changed files with 28 additions and 0 deletions
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 a new issue