This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Invoking application automatically after kernel

Other Parts Discussed in Thread: AM3359

Hi,

I have built an application using code Composer 5.x version. I am working on Linux platform. I want to start this application automatically after kernel boots.

I am using AM3359 and the SDK is ti-sdk-am335x-evm-05.03.02.00.

 

Which file i need to modify to invoke this application automatically?

 

Do we have any reference documentation for the same?

Thanks,

Raja.

  • Raja,

    This is handled with init files which is a standard Linux method.  You should add a script to execute your application in /etc/rcX.d where X is the run-level (i.e. rc5.d).  The scripts in that directory will be executed in order.

    Chase