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
已解决! 转到解答。
one can also check suggestions provided on
i.MX8M autostart application at boot
Best regardsigor
在原帖中查看解决方案
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