1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-17 23:57:07 +03:00
openwrt-xburst/target/linux/cobalt/base-files/etc/diag.sh

19 lines
568 B
Bash
Raw Normal View History

#!/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
}