5 Jan 2020, 22:21

Hi 🙂

Since a long time I use some customs scripts in /etc/init.d for the startup & shutdown procedure. It worked with no problems.
Recently I had to setup my recalbox from scratch (due to an upgrade error from 6.1 to 6.1.1) and somehow my scripts are not called anymore.
If I log in via ssh and call the scripts manually, they work, but during startup they don't.

I use the following structure for startup:

start() {
// Call a script which is located in /recalbox/scripts
}

case "$1" in
start)
start
;;
esac

Does somebody know a reason why this is not working anymore? Maybe I really miss a small thing somewhere..

Thanks 🙂