Re: [android-porting] Re: Making Wifi work on overo board running Android

2010-10-19 Thread Manav Gautama
Hi Manish, 2010/10/14 manish shakya msha...@oakland.edu I am connected to one of the AP and I could ping. What was the problem with the loop on scanning ? I am noticing the same behaviour. Says obtaining IP address and doesnt go ahead. 2010/10/14 manish shakya manishshakya...@gmail.com

[android-porting] can't get module

2010-10-19 Thread liu guoqing
hello i write a module called led.goldfish.so, and put it under /system/lib/hw. but i can't get the module throw my Native Service, i sure the HAL Module ID is right. has anybody give some suggestions. -- good life -- unsubscribe: android-porting+unsubscr...@googlegroups.com website:

Re: [android-porting] Re: Making Wifi work on overo board running Android

2010-10-19 Thread hedwin
Manav, Which android are you using? aosp or rowboat. Reason I am asking is that I have the same issue you mention but I use android rowboat (http://code.google.com/p/rowboat/) which has added some additonal stuff to manage ethernet. So I was wondering if this issue is caused by the added ethernet

[android-porting] Unable to see android logo....

2010-10-19 Thread abdul
hi, iam new to android . i was able to patch linux-2.6.29 with android patches along with my BSP patches...was able to execute init script of android..but iam facing some problem in android logo...all i could see on the display was some garbage data... I have the following doubts 1) should the

Re: [android-porting] my wifi can scan AP ,but can't connect to the AP .Thanks for any suggestions.

2010-10-19 Thread Michael Trimarchi
Hi maybe you need to implement some android specific request http://gitorious.org/flow-g1-5/platform_external_wpa_supplicant/commit/0079ce31faa15d882272891661493ce734e5ab3e Michael and why the DRIVER EVENT reply FAIL ? --~--~-~--~~~---~--~~ unsubscribe:

[android-porting] Re: what to do with hciattach for USB bluetooth?

2010-10-19 Thread Ash
Yes, try commenting out the rfkill and the hciattach from the bluedroid? works fine. May be one should propose changes in bluetooth.c, it is not transport independent. May be rfkill module can be moved into bluez kernel portion and radio power could be controlled using Bluetooth ON and Bluetooth

Re: [android-porting] my wifi can scan AP ,but can't connect to the AP .Thanks for any suggestions.

2010-10-19 Thread hedwin
Which android version is used? froyo or eclair. Btw I use rowboat on a IGEPv2 board. In eclair I don't have this issue in froyo I do. But it is only the first time. The second time it connects without any issue (sofar). Hedwin. On Tue, Oct 19, 2010 at 4:58 PM, Michael Trimarchi

[android-porting] Re: LCD can not work

2010-10-19 Thread Brad Davis
Android double buffers the screen and the kernel needs to allocate this memory for the screen. This usually shows up as the yres_virtual value is twice the yres value. I/EGLDisplaySurface( 1405): xres = 480 px I/EGLDisplaySurface( 1405): yres = 272 px I/EGLDisplaySurface( 1405):

Re: [android-porting] Where does Android get the screen info from linux device driver in TI OMAP3630?

2010-10-19 Thread Deva R
its via FBIOGET_VSCREENINFO ioctl cll [repost from http://groups.google.com/group/android-porting/browse_thread/thread/b0273e7d2e9ccf8a ] http://groups.google.com/group/android-porting/browse_thread/thread/b0273e7d2e9ccf8aAndroid queries fb info via FBIOGET_VSCREENINFO ioctl call., and processes

Re: [android-porting] how to add log in file which linked into .so file

2010-10-19 Thread Deva R
if you want to see verbose LOGV logs in any source, enable below macro while compiling the source. #define LOG_NDEBUG=0 -- Regards, Deva www.bittoggler.com On Fri, Oct 15, 2010 at 9:27 AM, qinxiaofen qinxiao...@vmkid.com wrote: hi, guys when i try to print some log in camera.cpp which

Re: [android-porting] Toshiba G900

2010-10-19 Thread Deva R
are you asking for sdk installation or native OS installation?? SDK - just follow android.com steps native installation - not sure of Toshiba G900. tested and ready x86 ports are available for below devices., http://www.android-x86.org/#Tested_platforms -- Regards, Deva www.bittoggler.com On

Re: [android-porting] error: 'dynamic_cast' not permitted with -fno-rtti

2010-10-19 Thread Deva R
is there any way to disable -fno-rtti in Android.mk for only this library. its not possible to be library specific,as this g++ dialect is set globally at build/core/definitions.mk this error is probably due to a typecast failure, in your source., spot it and make the typecast explicit like

Re: [android-porting] Segmentation fault while testing Opencore Unit Test Apps

2010-10-19 Thread Deva R
probably its an abort due to null pointer access., logcat trace will have I/DEBUG crash report, with PC, LR,etc. get it and check whats issue with addr2line tool more info http://omappedia.org/wiki/Android_Debugging#Debugging_segmentation_fault -- Regards, Deva www.bittoggler.com On Mon, Oct

Re: [android-porting] can't get module

2010-10-19 Thread Deva R
probably wrong platform name or something? you can track why a get-module of hw module fails at /hardware/libhardware/hardware.c = hw_get_module() -- Regards, Deva www.bittoggler.com On Tue, Oct 19, 2010 at 12:35 PM, liu guoqing lgqg...@gmail.com wrote: hello i write a module called

Re: [android-porting] Re: LCD can not work

2010-10-19 Thread l l
I have checked the log. It is nomal. I/EGLDisplaySurface( 1583): xres = 480 px I/EGLDisplaySurface( 1583): yres = 272 px I/EGLDisplaySurface( 1583): xres_virtual = 480 px I/EGLDisplaySurface( 1583): yres_virtual = 544 px Is there anything wrong. 2010/10/20 Brad Davis

[android-porting] Re: Segmentation fault while testing Opencore Unit Test Apps

2010-10-19 Thread journeyer
Thank you very much Deva! I now can try to debug my problem. Though I can't work on this issue right now, I will definitely check the points you mentioned later someday. Thank you! On 10월20일, 오전3시01분, Deva R r.deva...@gmail.com wrote: probably its an abort due to null pointer access., logcat