[android-developers] Re: how to build adb.exe for windows.

2009-08-29 Thread Kyo Yin
CATC USB Chief Bus Protocol Analyzer. With this equipment, i catch the 0 length packet when the host is ubuntu. 2009/8/29 Tejas tejas.path...@gmail.com: Not sure. What usb analyzer are you using ? On Aug 27, 11:37 pm, Kyo Yin kyo@gmail.com wrote: old framework of adb in target ===

[android-developers] Re: how to build adb.exe for windows.

2009-08-28 Thread Kyo Yin
old framework of adb in target === means i don`t use the composite driver in target if the host is ubuntu.you know, before composite gadget driver, the adb is a single gadget driver(kernel 2.6.25). kernel 2.6.29 add a composite gadget driver, mass storage and adb are the functions of this

[android-developers] Re: how to build adb.exe for windows.

2009-08-28 Thread Tejas
Not sure. What usb analyzer are you using ? On Aug 27, 11:37 pm, Kyo Yin kyo@gmail.com wrote: old framework of adb in target === means i don`t use the composite driver in target if the host is ubuntu.you know, before composite gadget driver, the adb is a single gadget driver(kernel

[android-developers] Re: how to build adb.exe for windows.

2009-08-27 Thread Kyo Yin
thank you for help.i have built the adb.exe and i have a question: In my opinion, adb will send a 0 length packet after a packet if thie packet length is multiple of the max length of endpoint. For example, our endpoint is 64 bytes. So after every 4096 packets, adb.exe should send a 0 length

[android-developers] Re: how to build adb.exe for windows.

2009-08-27 Thread Tejas
I am assuming you meant 4096 bytes.. What do you mean by.. BTW, For linux host, i use old framework of adb in target ? Are you saying that the usb transfer seen when using windows is same as linux, except the 0 length packet ? On Aug 27, 12:21 am, Kyo Yin kyo@gmail.com wrote: thank you for

[android-developers] Re: how to build adb.exe for windows.

2009-08-19 Thread Roman ( T-Mobile USA)
For being able to compile an exe file on Ubuntu you would have to cross compile on Ubuntu which means you have to have a Windows cross compiler on it. Do you? If not then install Cygwin on your windows environment and try it again. Make sure that you read the related topics about Android/Cygwin

[android-developers] Re: how to build adb.exe for windows.

2009-08-19 Thread Chris Stratton
I've not tried to do it for android/adb specifically, but cross compiling for windows from linux such as ubuntu actually works pretty well; Kyo will need to install the mingw32 packages, which is easily done on ubuntu with apt-get or synaptic. When compiling from cygwin it's important to get the

[android-developers] Re: how to build adb.exe for windows.

2009-08-19 Thread Jack Ha
ADB is part of the SDK. You probably should follow the instructions in android_src/development/docs/howto_build_SDK.txt to rebuild the SDK. -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in

[android-developers] Re: how to build adb.exe for windows.

2009-08-19 Thread Tejas
ADB is a tool which comes with SDK. First you need to build sdk for linux, and then convert it using cygwin for windows. Use following to build sdk, which should give you sdk zip file make TARGET_PRODUCT=sdk sdk You can find good instructions on building sdk for windows using cygwin here..

[android-developers] Re: how to build adb.exe for windows.

2009-08-18 Thread Roman ( T-Mobile USA)
How do you try to compile? Are you doing this on Cygwin? -- Roman Baumgaertner Sr. SW Engineer-OSDC ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of T-Mobile USA,

[android-developers] Re: how to build adb.exe for windows.

2009-08-18 Thread Kyo Yin
hi roman1.How do you try to compile? i just use make HOST_OS=windows in ubuntu. 2.Are you doing this on Cygwin? no.i use ubuntu. do you mean i should use cygwin to build adb.exe for windows? kyo 3273 2009/8/19 Roman ( T-Mobile USA) roman.baumgaert...@t-mobile.com How do