aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/cobalt/base-files/etc/diag.sh
blob: 070c218b3fdc50945b097b26147fbf01254f9277 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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
}