Re: [android-kernel] Loading kernel module in Android kernel problem

2012-02-27 Thread Vladimir Murzin
Hi! Your module is simple but not complete. You should register you init and cleanup functions with module_init() and module_exit(). Also it is worth noticing licence and author of the module ;-) Best wishes Vladimir Murzin Best wishes, Vladimir Murzin -Original Message- From: "Apurva

[android-kernel] USB Hosting capabilities of Android smartphone versus Embedded Linux

2012-02-27 Thread Dave Henning
I'm looking for some help understanding the current USB Host capabilities of the latest Android smartphones versus an embedded processor running a standard Linux build. I've done quite a bit of driver-level Linux development, but I'm totally new to Android. My current target system has a porta

Re: [android-kernel] Android suspend

2012-02-27 Thread arun joseph
I think, it is like when you suspend, 1)early suspend handlers are invoked 2)checks any active wake lock, if yes exit suspend and wait for wake event 3)if any wakelock is released in this wait, again check for active wake locks 4) if no wakelocks are being held proceed with the kernel suspend func

[android-kernel] Loading kernel module in Android kernel problem

2012-02-27 Thread Apurva Jaiswal.
Hello People, I am listing my problem here. I have a Google Nexus one a.k.a. "passion" phone with me. Fastboot and adb tools are installed in the phone. And the boot loader is unlocked. My task: I have to add a linux kernel module to the Android kernel. What I have done: I followed the steps