Hy
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.
Hy
I am able to run the scriptfile manually when i delete the line "export CE_DEBUG=3", but the app is still not starting at boottime.
PATH=$PATH:/path/to/files/
export PATH
/path/to/files/loadmodules_omap3530_c6accel.sh
export CE_DEBUG=3
nohup /path/to/files/c6accel_app | tee /path/to/files/log.txt &
sleep 1
Is there a way to debug in a different way?
Thanks
wendelin klimann said:#! /bin/sh#PATH=$PATH:/path/to/files/export PATH/path/to/files/loadmodules_omap3530_c6accel.shexport CE_DEBUG=3nohup /path/to/files/c6accel_app | tee /path/to/files/log.txt &sleep 1
Wendelin,
The codec server name being passed to Codec Engine is probably just the unadorned name (i.e., no path) "c6accel_omap3530.x64P". For this name to be found, one would need to run the application from the directory in which c6accel_omap3530.x64P exists. The file quoted above runs c6accel_app with a full path specification, so the "cwd()" (current working dir) is probably not the dir with the server executable. Can you change the above script to "cd" before running:
cd /path/to/files
nohup ./c6accel_app | tee log.txt &
Regards,
- Rob
wendelin klimann said:Thanks for the fast answer
RegardsWendelin
You're welcome.
But I'm a bit confused at this point. I received your latest post via email and that email copy had some text from you saying that you tried my suggestion but still had the problem. When I clicked the link to get to the post on the Forum web site I saw just the content I quote above, which led me to wonder if you had since found the solution and edited the post to remove the problem report.
Can you let me know where you stand currently? I'll try to help if further help is needed.
In the meantime, here's some casual reading for you containing a tip for locating or linking to your server executable: http://processors.wiki.ti.com/index.php/Codec_Engine_FAQ#Can_I_change_where_the_server_executable_is_located.3F
Regards,
- Rob
Hy
I am sorry, but i posted the first respond and discovered that i forgot to uncomment a line for this reason i changed the question to a simple thank you.
Actually i can load the kernel-driver and the c6accel-app at boot-time with the script:
cd /path/to/files/
./loadmodules_omap3530_c6accel.sh
./c6accel_app
-----------------------------------------------------------------------
Thanks for the link it will be quiete useful in future
Best regard
Wendelin