mirror of https://github.com/hak5/openwrt.git
parent
c370bf0e5e
commit
c961eac32d
|
@ -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
|
||||
}
|
|
@ -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