[android-porting] OpendGL ES porting on hardware accelerators on android

2009-06-03 Thread Shrinivas
Hi All, As i am beginer to android openGL ES, i have some queries regarding porting OpenGL ES on Graphic accelerators. Could you please tell me how do i start with the porting activity? - Is there any tutorial which talks about this. Can anybody give some some direction so that i can start

[android-porting] error when Soundrecord and music playback work at the same time

2009-06-03 Thread nearfuture
I comment the line stopAudioPlayback(); in file SoundRecorder.java, so the Soundrecord and music playback work at the same time. however, the error comes as : I/DEBUG ( 1847): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** I/DEBUG ( 1847): Build fingerprint:

[android-porting] init process unknown instruction call

2009-06-03 Thread sathish kumar
strace log of Android init process gives unknown system call. Have anyone faced such issues while porting Android different platforms? -- sathish --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website:

[android-porting] How to use external modem in emulator

2009-06-03 Thread sram
Hi i am trying to connect USB external modem(my Motorola Phone) on to Android emulator. i have tried the following command emulator -radio ttyACM0 -verbose -debug all and from the ADB shell tried echo ATD1234 ttyS1 but there is nothing happened. as well itried using the local host 5554 and

[android-porting] Re: ALSA on x86 - No sound

2009-06-03 Thread crazygenie
Well, you need to have the following lines in BoardConfig.mk for ALSA to be built: BOARD_USES_GENERIC_AUDIO=false BOARD_USES_ALSA_AUDIO=true BUILD_WITH_ALSA_UTILS=true Since, your BoardConfig.mk didn't have the BOARD_USES_GENERIC_AUDIO set to false, it still is using stub audio which is like a

[android-porting] Re: ALSA on x86 - No sound

2009-06-03 Thread Luca Belluccini
I did it. Here a mail I sent to some people involved in ALSA. I successfully bring up Android on ASUS EeePc. Wifi, LAN, Keyboard are working. The last step is ALSA. I enabled ALSA kernel support for it and specifically adding Intel HDA support. All sysfs and devfs nodes are created correctly.

[android-porting] Re: How to use external modem in emulator

2009-06-03 Thread David Turner
On Wed, Jun 3, 2009 at 11:24 AM, sram sayiram.koth...@gmail.com wrote: Hi i am trying to connect USB external modem(my Motorola Phone) on to Android emulator. i have tried the following command emulator -radio ttyACM0 -verbose -debug all and from the ADB shell tried echo ATD1234 ttyS1

[android-porting] Re: init process unknown instruction call

2009-06-03 Thread Neil Nguyen
I have the same issue but it is my kernel configuration. I did not have CONFIG_EABI and CONFIG_OABI_COMPAT turned on. You give it a try and see if it helps. Neil --- On Wed, 6/3/09, sathish kumar sathish...@gmail.com wrote: From: sathish kumar sathish...@gmail.com Subject: [android-porting]

[android-porting] Re: ANDROID Home Screen problem on SMDK2440 Platform

2009-06-03 Thread Vinay R Rao
HI all, The above problem has been solved. I enabled the Power management in the kernel and the above problem is solved. But there is another problem now. My Touch screen is taking MIRROR INPUT. i.e when i tap on the icon which is at the bottom, the icon present at the top gets open. What is the

[android-porting] Re: sd card not working :(

2009-06-03 Thread hairypothead...@googlemail.com
where do I get one or how how do I make one? --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting -~--~~~~--~~--~--~---

[android-porting] adb not connecting with cupcake

2009-06-03 Thread twebb
On custom hardware, I've recently moved from android-1.0 to android-1.5 (cupcake) and seem to not be able to connect between linux host and target via adb. I've done this often enough in the past without problems using the following command sequence from the host... adb kill-server

[android-porting] Regarding Porting Guide

2009-06-03 Thread Manish K Hemani
Dear all, I want to port android on a new board. I am new to android porting. Please some one help me how to go ahead with this. existing documentations are already obsolete. Please help. --~--~-~--~~~---~--~~ unsubscribe:

[android-porting] Procedure for adding new Android user/group ID's?

2009-06-03 Thread JoelV
In porting Android to a new device, I've run into some use cases where we've added support for some native OEM hal-specific services and hardware resources which do not seem to fall within the scope of the existing ID's defined in system/core/include/private/ android_filesystem_config.h. In order

[android-porting] Re: sd card not working :(

2009-06-03 Thread Johnny Song
you can get vold.conf for emulator at *$(TOP)/development/data/etc/vold.conf * 2009/6/4 hairypothead...@googlemail.com hairypothead...@googlemail.com where do I get one or how how do I make one? -- Hi , Best Regards, Johnny Song --~--~-~--~~~---~--~~

[android-porting] Error when build android-1.5r2

2009-06-03 Thread Elvis Dowson
Hi, I am getting an error when building the using the latest android-1.5r2 branch. external/qemu/sockets.c: In function ‘sock_address_init_resolve’: external/qemu/sockets.c:637: error: ‘EAI_NODATA’ undeclared (first use in this function) external/qemu/sockets.c:637: error: (Each undeclared

[android-porting] Re: Error when build android-1.5r2

2009-06-03 Thread Elvis Dowson
Apparently you have to modify the makefile to fix it. -- ./myandroid-org/external/qemu/Makefile.android 2009-04-27 09:34:36.0 +0800 +++ ./myandroid/external/qemu/Makefile.android 2009-04-27 09:03:12.0 +0800 @@ -18,7 +18,7 @@ # this is needed to build the emulator on 64-bit

[android-porting] Re: ALSA on x86 - No sound

2009-06-03 Thread crazygenie
Those error messages in system startup will vanish as soon as you put a proper asound.conf file covering all the audio controls into /system/ etc directory. One way to write a asound.conf is to look at the output of alsa_mixer contents command and writing the asound.conf accordingly. On Jun 3,