You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
568 B
19 lines
568 B
16 years ago
|
#!/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
|
||
|
}
|