Re: [android-kernel] Start a native C application at startup....

2010-02-23 Thread tarek attia
I've been trying to search for doing a similar operation to this..Glad I found your topic :) I want to simply run a user application at startup, my userapplication(called EA) accesses kernel modules using signals and it also uses sockets I used this link http://androidenea.blogspot.com/2009/08/i

Re: [android-kernel] Start a native C application at startup....

2010-02-23 Thread Tirtha Kanti Ghosh
>Is there any way by which i can modify the init.rc to achieve the >same ?? any alternative suggestions will be largely helpful. so, here is the alternative approach where u need to write a JAVA app which will invoke ur native daemon. http://androidenea.blogspot.com/2009/09/starting-android-servic

Re: [android-kernel] Start a native C application at startup....

2010-02-22 Thread Chris Stratton
Edit & regenerate the ramdisk once to make it launch a shell script off of /system after that is mounted, then anytime you want to change your add ons edit the script... including to do nothing if that becomes your wish at some point. On Feb 23, 2010 2:38 AM, "Santosh Kadam" wrote: Hi - Is ther

[android-kernel] Start a native C application at startup....

2010-02-22 Thread Santosh Kadam
Hi - Is there a way to start a native C/C++ application at the startup ? One way is to add it to the init.rc and recreate the ramdisk image. But every time I write an application - I don't want to create a ramdisk image. Is there any way by which i can modify the init.rc to achieve the same ?? an