I was referring to this post to create startup script in BeagleBone Yocto, I have 3 scenario required to run in startup. I am not really sure what is best way to do it, should I create 3 services and have them pointing 3 different script or is it possible to launch multiple script in one service. What I mean is something shown below in my service file:
[Unit]
Description=RUNNING BUILD IN TESTING SCRIPT
[Service]
Type=simple
ExecStart=/bin/sh -c 'sleep 5 ; /usr/sbin/check_emmc.sh'
ExecStart=/bin/sh -c 'sleep 5 ; /usr/sbin/blinkled.sh'
[Install]
WantedBy=multi-user.target
However, this method only work one script, is it possible to make one service to run multiple shell script?