Hi,
I want to auto run a custom script during start up
I am using i.mx8mmini board yocto
building using bitbake fsl-image-validation-imx
Regards
Santhosh
Solved! Go to Solution.
one can also check suggestions provided on
i.MX8M autostart application at boot
Best regardsigor
View solution in original post
Hi Santhosh Kumar,
Please check below thread:
[Yocto] Auto run script when startup
Let us know if above thread do not solve your problem.
Regards,
Karan Gajjar
If your system has /etc/inittab, try adding a line in it.
What the Linux /etc/inittab file tells your system to do | Network World
Hi Karan,
inittab is not found in my rfs, I tried as per this link also cron - Running command at startup on crontab - Ask Ubuntu
I placed the command sudo sh /home/root/startupscript.sh in /etc/rc.local before the exit 0 line
/etc/rc.local
exit 0
But things didn't work. it didn't execute the startupscript at all
Any other alternative..
Thanks Issue resolved... :smileyhappy:
edited the /etc/rc.local file and added the below line before the exit(0)
cd /home/root/
sh startupscript.sh
Santhosh Kumar S