[android-porting] Regarding Toolchain

2010-05-21 Thread patel
Hi All, I am very new in Android and i want to compile android toolchain . can some one guide from where i can download android toolchain and supported library. Thanks, Ak -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Re: About boot from SD card

2010-05-21 Thread Weber
Thank you all,I have solved it . The cause is that I set the wrong bootargs root=/dev/block/ mmcblock0p1 after changing it to root=/dev/mmcblock0p1 ,it works ok but I can find device file mmcblock0p1 ONLY in /dev/block/ after bootup,it is kind of odd. Why can it be mounted from /dev/mmcblock0p1

[android-porting] RE: Data connection via cell modem (GPRS)

2010-05-21 Thread Uhrenfeldt Henrik
Hi Mike, Hehe... I had the same feeling. My DEACTIVATE does not work 100% smooth, but it works. I basically set AT+CGACT=0,1 and wait for PPPD to die from natural causes. As far as I remember, it does in fact call ip-down. I do not attempt to stop the service manually (via

Re: [android-porting] Regarding Toolchain

2010-05-21 Thread Ashwin Bihari
The Android toolchain is already available in the 'prebuilt' directory when you get the sources..why do you want to recompile it? -- Ashwin On Fri, May 21, 2010 at 3:10 AM, patel akhipa...@gmail.com wrote: Hi All, I am very new in Android and i want to compile android toolchain . can some

Re: [android-porting] Regarding Toolchain

2010-05-21 Thread David Turner
The toolchain sources live at kernel.org, to get them try: repo init -u android.git.kernel.org/toolchain/manifest.git -b master repo sync Alternatively, NDK r4 comes with several scripts that can help your download / build / install them. See ndk/build/tools/rebuild-all-prebuilt.sh On Fri, May

Re: [android-porting] Re: Using Existing H264 decoders

2010-05-21 Thread Deva R
if TARGET_BUILD_TYPE is already set somewhere globally, buildspec.mkignores.. have u taken care of it? ifndef TARGET_BUILD_TYPE #TARGET_BUILD_TYPE:=release #TARGET_BUILD_TYPE:=debug endif not sure if it will help, 'make showcommands' gives whole dump of build commands, and u might be able

[android-porting] Native buffer blitting

2010-05-21 Thread Mfabbri77
I'm in the need to draw/blit/display a native ARGB buffer (allocated/ malloced by my native library) at the Java application side. Please take into account that the buffer content is changed dynamically at runtime, using drawing functions of my native library. I'm searching the most efficient

[android-porting] Reg: Cross compiling android for Blackberry devices

2010-05-21 Thread Shamjith KV
Hi Guys, Can anyone suggest me, how to cross compile android for Blackberry devices?. Thanks in advance Shamjith -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Re: Compilation Error while building vanilla eclair code on Ubuntu Virtual Machine

2010-05-21 Thread Ben Stokes
Did you get all of the pre-requisite packages? sudo apt-get install git-core gnupg sun-java5-jdk flex bison gperf libsdl-dev libesd0-dev libwxgtk2.6-dev build-essential zipcurl libncurses5-dev zlib1g-dev valgrind -- unsubscribe: android-porting+unsubscr...@googlegroups.com website:

[android-porting] Hardware codecs support on HTC Magic

2010-05-21 Thread Nitin Khanna
Hi all, I wanted to check if the HTC Magic's qDSP has the following hardware codecs. - G.729 - iLBC - G.722/1 If yes, has anyone been able to successfully use them in a native application. Regards Nitin -- unsubscribe: android-porting+unsubscr...@googlegroups.com website:

Re: [android-porting] Keyevent not support the long-pressed behavior entering screen-off mode

2010-05-21 Thread Subramani Venkatesh
Hi, Can you give more details about your hardware( Target Board).. I assume it might be a driver issue.. -Subbu On Wed, May 19, 2010 at 12:59 PM, Shawn tousan...@gmail.com wrote: Hi All, In default behavior, I found system not supprot the long-pressed behavior entering screen-off mode based

[android-porting] Re: how enable LAN in eclairs

2010-05-21 Thread Mikkel Christensen
Hi, You might have problems with DNS not getting resolved automatically, but this can be set via this command: setprop net.dns1 xx.xx.xx.xx Best regards, Mikkel On May 20, 3:38 pm, Akash Choudhari akas...@gmail.com wrote: You can use netcfg I would use netcfg eth0 up netcfg eth0 dhcp

[android-porting] Android Suspend geeting called continuously

2010-05-21 Thread shilpa
Hi, I'm facing a strange problem. I'm working on Android eclair 2.1 version. Even when device was put to suspendwithout running any apps the battery was discharging faster. It was found that suspend is getting called continuously. This happens if the device is kept in standalone mode. Below is

[android-porting] Re: Data connection via cell modem (GPRS)

2010-05-21 Thread Kjaergaard
I am following this thread with great interest as I recently have tried to setup a 3G connection though a Huawei USB modem. I succeded in doing this from both an Android-x86 and a Beagleboard. However this was using a manual startup of the PPP daemon, where I have modified the chat script to use

[android-porting] Transmitting signals at 433Mhz

2010-05-21 Thread aggie_hellcat2009
Howdy, I am re-posting this because I received no response after about 3 months: I am interested in transmitting to a device that only sends and receives on 433Mhz. Is it possible to make my program send and receive signals at this frequency? If so, how do I access that technology. It would

Re: [android-porting] Android Suspend geeting called continuously

2010-05-21 Thread Deva R
It was found that suspend is getting called continuously. This happens if the device is kept in standalone mode. probably you should see it other way: system never stays in sleep mode, and getting woken up by spurious hardware event. since no task may be scheduled for that event, system will

[android-porting] Building app outside android source tree

2010-05-21 Thread Sanra
I'd like to have a separate android project outside the android source tree for my application but would like to be included as part of the android platform build. The idea is to replace the built-in contacts app with my custom contacts application which is outside the android src tree. When I