I updated Libreelec to latest vesion 11 but my autostart.sh don't work after this update. In the old version was working. For me not clear what's wrong.
I have this autostart.sh to swith a gpio signal from the Rpi4:
Bash
#!/bin/bash
# Exports pin to userspace
echo "17" > /sys/class/gpio/export
# Sets pin 17 as an output
echo "out" > /sys/class/gpio/gpio17/direction
# Sets pin 17 to high
echo "1" > /sys/class/gpio/gpio17/value
this files I have in the /storage/.config folder
Please can you help what's wrong ?
Thanks