mirror of
https://github.com/Fishwaldo/build.git
synced 2025-03-20 22:01:31 +00:00
24 lines
698 B
Bash
24 lines
698 B
Bash
#! /bin/bash
|
|
### BEGIN INIT INFO
|
|
# Provides: Disable blinking 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: Banana Led disabler
|
|
### END INIT INFO
|
|
|
|
case "$1" in
|
|
start)
|
|
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
|
|
;;
|
|
*)
|
|
## If no parameters are given, print which are avaiable.
|
|
echo "Usage: $0 {start}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|