0

i want to run my application on board(i.MX233 EVK) after all modules loaded.i want to add auto log-in.i got this link but the procedure not working.

Running a script after startx automatically

where can i add small script to load my application(C language) automatically after boot-up of board.

Community
  • 1
  • 1
Hemanth
  • 1
  • 1

2 Answers2

0

Your question has been literally answered million times on Internet. Please have a look at How to run a shell script at startup for instance.

Community
  • 1
  • 1
Oleksandr Kravchuk
  • 5,963
  • 1
  • 20
  • 31
0

Put your script in /etc/init.d/rcS or rc file init process will automatically execute it.

/etc/init.d/rcS
your_script.sh &
Rahul R Dhobi
  • 5,668
  • 1
  • 29
  • 38