mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 23:27:30 +02:00
5944a25628
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16233 3c298f89-4303-0410-b956-a3cf2f4a3e73
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
|
|
}
|