You can't give the permissions directly on android source.We need to give the permissions on init.rc.Better to read the file from system/core/init/readme.txtRegards,Jagan
--
--
unsubscribe: android-kerne...@googlegroups.com
website: http://groups.google.com/group/android-kernel
unsubscribe: android-kerne...@googlegroups.com
website: http://groups.google.com/group/android-kernel
chmod 777 <sys file name>
chmod 777 <sys file name>
I've found that doing it at least twice usually makes it work..
-- Ashwin
On Tue, Sep 20, 2011 at 12:06 PM, Pratik Prajapati
> --
> You received this message because you are subscribed to the Google Groups
> "android-platform" group.
> To post to this group, send email to android-...@googlegroups.com.
> To unsubscribe from this group, send email to
> android-platfo...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/android-platform?hl=en.
>
Thanks,
JBQ
> --
> You received this message because you are subscribed to the Google Groups
> "android-platform" group.
> To post to this group, send email to android-...@googlegroups.com.
> To unsubscribe from this group, send email to
> android-platfo...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/android-platform?hl=en.
>
--
Jean-Baptiste M. "JBQ" Queru
Software Engineer, Android Open-Source Project, Google.
Questions sent directly to me that have no reason for being private
will likely get ignored or forwarded to a public forum with no further
warning.
I had a very similar problem with a "chmod 0777 filename" not working in my init.rc. It took me hours to figure it out. Just in case you face the same thing, here is what was my problem. The directory where "filename" was had less rights than what I wanted for "filename". So, even though filename was supposed to be 0777, the effective rights were the one of "parent directory". To fix it I did:chmod 0777 "parentdirectory"chmod 0777 "parentdirectory/filename"