Re: [android-kernel] Re: How to add own App in Source Android

2011-05-31 Thread raja pavan
try android dot com site. I copied the link from that site. On Tue, May 31, 2011 at 11:59 PM, spurwa wrote: > sorry raja, i can't open the link:D > > On May 31, 7:19 pm, raja pavan wrote: > > Creating the Project without Eclipse > > *http://developer.android.com/resources/tutorials/hello-w

Re: [android-kernel] Is there return length error in adb_read?

2011-05-31 Thread biAji
Confirm! The bug do exist. On Fri, May 27, 2011 at 8:09 PM, yingchun li wrote: > Hi, All >     In the function adb_read(f_adb.c), if the transfer succeed, the > return result is always the length > set by read system call, e.g. if you read with length 512, actually > read maybe 200, but the retur

Re: [android-kernel] Android and the Linux kernel community

2011-05-31 Thread Tim Bird
On 5/31/2011 10:12 AM, teancum wrote: See the following analysis of the problem: http://www.kroah.com/log/linux/android-kernel-problems.html Are there plans to integrate the android code into the Linux kernel? The CE Workgroup of the Linux Foundation (formerly CELF), has been working behind th

Re: [android-kernel] Android and the Linux kernel community

2011-05-31 Thread Jon Pry
Its usually not that hard to extract a patchset from comparing an android kernel to the base kernel of the same version. These will apply pretty easily with some skill and grace. The worst of it is when mainline actually picks up one of these android ideas. Such as rtc-alarm, composite gadget, or o

[android-kernel] Android and the Linux kernel community

2011-05-31 Thread teancum
See the following analysis of the problem: http://www.kroah.com/log/linux/android-kernel-problems.html Are there plans to integrate the android code into the Linux kernel? -- unsubscribe: android-kernel+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-kernel

[android-kernel] Re: Android-BootTime

2011-05-31 Thread yadav
Hi, If u want to find the time Platform time in DDMS we have profiling method. http://android.docs.uu3g.com/guide/developing/debugging/ddms.html In kernel u can use bootchart http://elinux.org/Using_Bootchart_on_Android. Thanks venkatesh On Apr 13, 3:27 am, Robin Gujjar wrote: > On Fri, Apr 8, 2

[android-kernel] Is there return length error in adb_read?

2011-05-31 Thread yingchun li
Hi, All In the function adb_read(f_adb.c), if the transfer succeed, the return result is always the length set by read system call, e.g. if you read with length 512, actually read maybe 200, but the return length is always 512. following is the patch: --- a/drivers/usb/gadget/f_adb.c +++ b/dr

Re: [android-kernel] Re: how to skip loading drivers at startup and load them all later on?

2011-05-31 Thread mike digioia
Yes correct the make file scripts use "uname -r" which works only on a host with the same arch as the target. Not sure how much of this is broken this way. But this can cause this same kind of message when trying to execute. I was able to change this to fix it to my target's arch=ARM. On Fri, May

[android-kernel] Re: How to add own App in Source Android

2011-05-31 Thread spurwa
sorry raja, i can't open the link:D On May 31, 7:19 pm, raja pavan wrote: > Creating the Project without Eclipse > *http://developer.android.com/resources/tutorials/hello-world.html* > > ** > > On Tue, May 31, 2011 at 5:25 PM, spurwa wrote: > > Can anyone tell me how to add the app on the An

[android-kernel] Android alarm driver aborting suspend [alarm-dev]

2011-05-31 Thread Robert Beckett
Hi, I have been debugging why our device will often abort a suspend. I tracked it down to the following sequence : 1. Alarm type 3 (ELAPSED_REALTIME) is scheduled 2. The alarm is triggered 3. Shortly after, the system is going down for a suspend 4. The wakelock driver aborts the suspend with -EA

Re: [android-kernel] How to add own App in Source Android

2011-05-31 Thread raja pavan
Creating the Project without Eclipse *http://developer.android.com/resources/tutorials/hello-world.html* ** On Tue, May 31, 2011 at 5:25 PM, spurwa wrote: > Can anyone tell me how to add the app on the Android Open Source Code. > I've tried the way given by www.source.android.com, how to add >

[android-kernel] How to add own App in Source Android

2011-05-31 Thread spurwa
Can anyone tell me how to add the app on the Android Open Source Code. I've tried the way given by www.source.android.com, how to add applications, compile and produce files in the form of extension *.apk, but apk file is not successfully generated... Please give me guidance on how to add my own a