Hi,
I am using libreelec 9.2.1 and want to start TVmosaic automatically on startup. So I created autostart.sh with the following lines:
#!/bin/sh
(
sh /storage/tvmosaic/start2.sh
) &
If I run the autostart.sh manually it is working but when I reboot the Pi the start2.sh script will not executed. Generally the autostart.sh will be executed.
I tested it on creating a text file with autostart.
Has anybody an idea why the script will not execute on reboot?