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

21 lines
532 B
Bash
Raw Normal View History

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