mirror of
https://bitbucket.org/gwenhael/cubietruck-slackware.git
synced 2024-12-25 21:58:38 +01:00
Moved disable_led.sh into script folder
Addded LSB information to avoid warning during startup.
This commit is contained in:
parent
34f1a50b3f
commit
b88f72c140
1 changed files with 16 additions and 0 deletions
16
scripts/disable_led.sh
Normal file
16
scripts/disable_led.sh
Normal file
|
@ -0,0 +1,16 @@
|
|||
### BEGIN INIT INFO
|
||||
# Provides: Disable bright leds from Cubietruck
|
||||
# Required-Start: $local_fs $network
|
||||
# Required-Stop: $local_fs $remote_fs
|
||||
# Default-Start: 2 3 4 5
|
||||
# Default-Stop: 0 1 6
|
||||
# Short-Description: CT Led disabler
|
||||
# Description: Disable bright leds from cubietruck using /sys/class/leds
|
||||
### END INIT INFO
|
||||
#
|
||||
# Turn off bright flashing LEDs!!
|
||||
echo 0 > /sys/class/leds/blue:ph21:led1/brightness
|
||||
echo 0 > /sys/class/leds/orange:ph20:led2/brightness
|
||||
echo 0 > /sys/class/leds/white:ph11:led3/brightness
|
||||
echo 0 > /sys/class/leds/green:ph07:led4/brightness
|
||||
|
Loading…
Reference in a new issue