You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openwrt/target/linux/cobalt/base-files/etc/diag.sh

21 lines
532 B
Bash

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