how to start a program on boot up of beaglebone black?? example blink.py
drop the file into /var/lib/cloud9/autorun
ok thank you sir…
I give an example on how to do auto start a python script with angstrom in this post: http://myroboticadventure.blogspot.com/2014/05/my-first-working-robot-its-alive-part-3.html
I believe if you are using the Debian image you would want to create an init and place it int the /etc/init.d directory. You would then need to link it to the appropriate rc.d directory to autorun it.
@Jon_Hoffman For Debian, do not create symbolic links manually, but use update-rc.d
Yes, that is definitely the correct way to do it. Thanks for reminding me. Some reason I always associate that as being Ubuntu specific, not sure why.