mirror of
https://github.com/lxsang/meta-rpi-diya.git
synced 2024-11-08 14:38:21 +01:00
20 lines
418 B
Bash
20 lines
418 B
Bash
#!/bin/sh
|
|
|
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin
|
|
DESC="Auto deployment configuration from media"
|
|
|
|
case "$1" in
|
|
start)
|
|
echo -n "Start $DESC: "
|
|
# for some reason the LCD backlight is turned off
|
|
# need to turn it on manually
|
|
echo 0 > /sys/class/backlight/backlight/bl_power
|
|
;;
|
|
*)
|
|
N=/etc/init.d/$NAME
|
|
echo "Usage: $N {start}" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0 |