mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 19:27:31 +02:00
19 lines
568 B
Bash
19 lines
568 B
Bash
|
#!/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
|
||
|
}
|