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-02 09:51:11 +02:00
|
|
|
. /etc/profile
|
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
|
2023-08-02 09:51:11 +02:00
|
|
|
|
2023-08-02 10:33:39 +02:00
|
|
|
cat << EOF > /boot/extraconfig.txt
|
2023-08-02 09:51:11 +02:00
|
|
|
# initramfs recovery-${MACHINE}.cpio.gz followkernel
|
|
|
|
EOF
|
2023-08-01 23:15:55 +02:00
|
|
|
;;
|
2023-08-02 11:03:50 +02:00
|
|
|
|
2023-08-01 23:15:55 +02:00
|
|
|
*)
|
|
|
|
N=/etc/init.d/$NAME
|
|
|
|
echo "Usage: $N {start}" >&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit 0
|