Re: [android-kernel] Can I use the Linux usbserial driver and ADB at the same time?

2010-07-15 Thread Arindam Roy
A noobish query; Where do you get the values for th product id? usb_products[] = { 168 { 169

Re: [android-kernel] Can I use the Linux usbserial driver and ADB at the same time?

2010-07-15 Thread Mike Lockwood
Hi Danke, The USB serial module probably wants to own the entire USB interface, which means there would be no way to use adb at the same time. I would recommend using the f_acm.c function driver instead, which we already have working with the android composite driver (we were going to use it for

[android-kernel] PLEASE HELP: Android kernel patches for Linux 2.6.29-rc3 from Ti

2010-07-15 Thread Mehrsa
Hello All, I am trying to port Android on a custom made board based on omap 3530. We used Linux os 2.6.29-rc3 from Ti on a reference board. We have been able to boot the system to the Linux. Now I need to find appropriate patches to the kernel to enable the Android on the board. I have googled to

[android-kernel] Compiling Android Source Code

2010-07-15 Thread kishore
I downloaded and tried to compile Android Source code using "make", but I got so many errors, Can anyone help me out to fix this. Error = In file included from /usr/include/features.h:378, from /usr/include/string.h:26, from external/clearsilver/java-jni/j_ne

[android-kernel] Can I use the Linux usbserial driver and ADB at the same time?

2010-07-15 Thread Danke Xie
I was trying to connect to the serial port on the Android device from the host PC. What I was doing was loading the "usbserial" driver: modprobe usbserial product= vendor= It seems it does recognize all serial functions in the USB and created several ttyUSB ports/devices. However, it seems (at le

[android-kernel] Re: building source code.

2010-07-15 Thread doddy
I had the same problem. It is likely because you have the latest java6- jdk installed, this will not work. You have to install java5 in order for it to build correctly. The reason is that for some reason java6 assumes that you are building on a 64bit machine WORDSIZE == 64 and therefore looks for t

Re: [android-kernel] Re: How to dump boot message without adb

2010-07-15 Thread Hiju
Jie wrote: >Hi, vishnu > >Thanks for quick reply. I've executed 'printenv' on my Tattoo device, >'CMDLINE' environment value isn't there. I guess it should be set in >BoardConfig.mk file, right? There is an item named >'BOARD_KERNEL_CMDLINE' in this file. Right now, I set it to >'no_console_sus

[android-kernel] Re: adding a new package to the android filesystem

2010-07-15 Thread Danke Xie
Hope this helps http://android.git.kernel.org/?p=platform/build.git;a=blob_plain;f=core/build-system.html On Jul 8, 9:44 pm, ajay wrote: > HI, > > I am trying to add a .apk file to the filesystem before building the > file system.could someone help me with the makefile(.mk) that is to be > writt

[android-kernel] Compiling Android Source Code, error

2010-07-15 Thread kishore
host Java: droiddoc (out/host/common/obj/JAVA_LIBRARIES/ droiddoc_intermediates/classes) Note: Some input files use unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. Install: out/host/linux-x86/framework/droiddoc.jar host C: libclearsilver-jni <= external/clearsilve

[android-kernel] Re: Android kernel developer advocacy/guidance?

2010-07-15 Thread Danke Xie
Hello, How is the sensor connected to the platform? You can check out kernel/arch/arm/ drivers, and see how other sensors (e.g., camera) are registered to the SoC board. Thanks, Danke On Jul 13, 5:02 pm, nature lover wrote: > Hello, > > Are there kernel developer advocates at Google who can at

[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

[android-kernel] Android and Kernel 2.6.33

2010-07-15 Thread Retti
hi, I'm just trying to run android on an AT91. The problem is that I need for more purposes at least the kernel 2.6.33. since this version there's no longer included android driver in kernel. I can now use the kernel driver with the lack of expandable? where can I get these drivers? -- unsubscrib

[android-kernel] Re: How to dump boot message without adb

2010-07-15 Thread Danke Xie
To Jie, You are right that when Android boots up, you will see the logo screen, instead of the Linux console output. I guess this is what you mean by the "tty". What Vishnu said is you won't get the kernel messages on the LCD, but you can get it from a host PC to which you have connected the Andro