[android-porting] Information related to Browser application

2008-12-15 Thread srinivas
hi, I am srinivas, i am trying to test data calls using browser on an new qualcomm target. The kernel has been modified to incorporate the necessary hardware changes as well as the changes required for android. The Browser was working fine on the old hardware. On the new hardware when i open the

[android-porting] Re: how to use the rild on OMAP2430

2008-12-15 Thread David Turner
use adb logcat -b radio to display the radio log. this includes traces from both the reference-ril library and the GSM stack that talk to it (including AT commands). that should help you diagnose the problem much more easily. It's also easy to add additionnal traces to reference-ril if you need

[android-porting] Re: Android 1.0 Release Ported to Nokia N810

2008-12-15 Thread Mohan Parthasarathy
Solca, Okay, finally it worked for me after a couple of flashes. It looks like if you get into some problems, always update the device with the latest image using software updater for N810 and then start with Android flash process. during the boot, Nitdroid Image started flashing on the screen,

[android-porting] Re: Android 1.0 Release Ported to Nokia N810

2008-12-15 Thread Mohan Parthasarathy
Wifi works for me too i.e, it at least reports that it gets an IP address (WPA2 security). But the browser is unable to connect though.. Are you able to use the browser ? thanks mohan On Sat, Dec 13, 2008 at 3:35 AM, Meizirkki meizir...@gmail.com wrote: Solca, thanks for the latest kernel

[android-porting] Re: How does the bootloader legacy works?

2008-12-15 Thread Brian Swetland
The bootloader/legacy code is indeed not ready for prime time (and is, as you've noticed kinda complicated and messy). It was used to build a minimal bootloader used for some development on a MSM7201A develpment platform (Qualcomm's SURF board), and not in any production device. It was open

[android-porting] only every other key press results in icon or selection highlighting

2008-12-15 Thread twebb
In porting android to an OMAP EVM board, I'm having an issue where D- pad key presses (i.e. left/right/up/down) don't seem to cause the screen to refresh such that the next icon is highlighted. Based on how the code reacts, the icon is actually active (i.e. ENTER causes it to launch) but just

[android-porting] Re: where is Android shell configuration ?

2008-12-15 Thread pavan savoy
Hi, No replies yet ?? I am currently working around it by using the ./busybox telnetd -l sh line in the init.rc. Any ideas ? Its really bugging me... regards, Pavan On Wed, Dec 10, 2008 at 3:58 PM, pavan savoy pavan.sa...@gmail.com wrote: Hi, Where is the android shell console ash

[android-porting] Re: How to use Qwerty keyboard to select icon and menu

2008-12-15 Thread Dianne Hackborn
You can use ddms to get a snapshot of the screen... which I believe does this be re-compositing the windows into an off-screen buffer, so should let you see what the system actually things it is displaying before any driver problems get in the way. On Mon, Dec 15, 2008 at 12:58 PM, twebb

[android-porting] Android HAL

2008-12-15 Thread Luca Belluccini
If I want to create a new device, conforming to Android HAL, I should use one of the following approaches: 1. App - Runtime Service - lib 2. App - Runtime Service - Native Service - lib 3. App - Runtime Service - Native Daemon - lib Except for the existing devices, it is not easy to

[android-porting] Re: How to use Qwerty keyboard to select icon and menu

2008-12-15 Thread twebb
You can use ddms to get a snapshot of the screen...  which I believe does this be re-compositing the windows into an off-screen buffer, so should let you see what the system actually things it is displaying before any driver problems get in the way. That sounds like a good approach.

[android-porting] wpa_supplicant with WEXT support

2008-12-15 Thread pavan savoy
Hi, I enabled the HAVE_CUSTOM_WIFI_DRIVER_2 := true in my BoardConfig.mk and also added the following entry in wpa_supplicant/Android.mk, ifeq ($(HAVE_CUSTOM_WIFI_DRIVER_2),true) WPA_BUILD_SUPPLICANT := true CONFIG_DRIVER_CUSTOM=y #my addition down here . CONFIG_DRIVER_WEXT=y endif Is this

[android-porting] Re: wpa_supplicant with WEXT support

2008-12-15 Thread dimitr...@android.com
No, nothing is fishy. You probably want to add #ifndef ANDROID to wireless_copy.h file for these types. On Dec 15, 3:54 pm, pavan savoy pavan.sa...@gmail.com wrote: Nope seems to get a re-definition error on doing that, the same re-def error which happened when I enabled the CONFIG_WEXT in

[android-porting] graphics and video questions

2008-12-15 Thread anandb
I had a few questions on graphics and video .. 1. Is the blitter on G1 aware of mmu and works with virtual memory? 2. Is openGL mainly used for composing textures which have been created by app/blitter? And as a fallback when blitter is not capable of handling transformations? 3. From reading

[android-porting] Re: only every other key press results in icon or selection highlighting

2008-12-15 Thread reedhuang
Since I am using pxa27x_keypad.c, I guess you might be using omap- keypad.c. Did you compare these two files and find any difference? On Dec 16, 5:07 am, twebb taliaferr...@gmail.com wrote: In porting android to an OMAP EVM board, I'm having an issue where D- pad key presses (i.e.

[android-porting] Re: Audio support

2008-12-15 Thread gougou
Can you check your audio device files (like PCMC0D0 )in /dev/snd or /dev If sb get the error: no such device, please check the alsa-lib -- alsa-lib-1.0.13/include/config.h #define ALSA_DEVICE_DIRECTORY /dev/ The old device path is /dev if Andriod has below update, this value

[android-porting] Re: Android 1.0 Release Ported to Nokia N810

2008-12-15 Thread solca
Hi Mohan, I just uploaded a new release which fixes some problems including the DNS issue you describe. Too this mailing list is for porting efforts so I think is better to post this kind of questions at the iTT forums: http://www.internettablettalk.com/forums/showthread.php?t=25410 Thx! On

[android-porting] Re: Enabling Qwerty keyboard with Android

2008-12-15 Thread gougou
Hi guys I'm using a track ball and in drver , when press send a key event , when move send REL_X and REL_Y event. I can get event using event test code. But when in andriod the press key event works fine, and if I move the trackball the andriod UI will crash can restart. log as below:

[android-porting] Re: Enabling Qwerty keyboard with Android

2008-12-15 Thread Wang Xiaoguang
That's a bug in android's building system, which may make the keylayout and keychar files unreadable. use 'chmod 0644 /system/usr/[keylayout / keychar files]' to fix On Tue, Dec 16, 2008 at 11:19 AM, gougou zqy2000...@gmail.com wrote: Hi guys I'm using a track ball and in drver , when

[android-porting] Re: Enabling Qwerty keyboard with Android

2008-12-15 Thread Shivdas Gujare
Check permissions of keychars/qwerty.kcm.bin. and also modify your qwerty.kcl as per your requirement. Regards, Shivdas On Tue, Dec 16, 2008 at 8:49 AM, gougou zqy2000...@gmail.com wrote: Hi guys I'm using a track ball and in drver , when press send a key event , when move send REL_X

[android-porting] SD card error

2008-12-15 Thread Nimit Manglick
Hi All, I have ported android OMAP 3530 EVM. Now I am facing a strange looking problem. If I partition my SD card with ONLY single partition of vfat, placing my media files into that, then Android media player is able to play those files (though am not able to hear anythng). My android is