Re: [android-kernel] Adding Driver in Android

2010-08-02 Thread Pavan Savoy
Google ? http://www.linuxjournal.com/article/7316 http://ramblings.narrabilis.com/wp/pi/ On Fri, Jul 30, 2010 at 11:00 PM, prashant patil wrote: > dear.. > pls send me detail procedure how to modify > >  Regards > >  Prashant Patil > > On 7/29/10, Bharathi Subramanian wrote: >> >> > Do we need t

Re: [android-kernel] Adding Driver in Android

2010-08-02 Thread prashant patil
dear.. pls send me detail procedure how to modify Regards Prashant Patil On 7/29/10, Bharathi Subramanian wrote: > > > Do we need to modify one of init.c and devices.c? > > Yes. You have to add it in the devices.c file. > > -- > Bharathi Subramanian > > -- > unsubscribe: > android-kernel+uns

Re: [android-kernel] Adding Driver in Android

2010-07-29 Thread Pavan Savoy
init should do that for you, init in android does what udevd does in other linux flavors... so a device_create / class_create and all the other sub-system uevents from kernel I believe are being listened onto by init. On Thu, Jul 29, 2010 at 1:32 PM, Bharathi Subramanian wrote: >> Do we need to m

Re: [android-kernel] Adding Driver in Android

2010-07-29 Thread Bharathi Subramanian
> Do we need to modify one of init.c and devices.c? Yes. You have to add it in the devices.c file. -- Bharathi Subramanian -- unsubscribe: android-kernel+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-kernel

[android-kernel] Adding Driver in Android

2010-07-15 Thread Ramesh
Hi, We have written a sample driver for Android. We have added the driver and built it statically and linked with the kernel.We built the Kernel Image and got the uImage file. We flashed the kernel image on to our hardware (Devkit8000). We tried to look for our device in “/proc/ devices”. Our dri