1
0
mirror of https://github.com/lxsang/meta-rpi-diya.git synced 2024-09-16 15:26:39 +02:00
meta-rpi-diya/recipes-diya/initramfs/files/confd

20 lines
398 B
Plaintext
Raw Normal View History

2023-08-01 23:15:55 +02:00
#!/bin/sh
PATH=/sbin:/bin:/usr/sbin:/usr/bin
2023-08-02 00:05:19 +02:00
DESC="Custom configuration"
2023-08-01 23:15:55 +02:00
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