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.
20 lines
532 B
20 lines
532 B
#!/bin/sh
|
|
# Copyright (C) 2009-2011 OpenWrt.org
|
|
|
|
front_led=/sys/class/leds/qube::front
|
|
|
|
set_state() {
|
|
case "$1" in
|
|
preinit)
|
|
[ -d $front_led ] && {
|
|
echo none > $front_led/trigger
|
|
echo 255 > $front_led/brightness
|
|
}
|
|
;;
|
|
done)
|
|
[ -d $front_led ] && {
|
|
echo 0 > $front_led/brightness
|
|
}
|
|
;;
|
|
esac
|
|
}
|
|
|