Re: [android-porting] mouse hover events

2010-08-30 Thread Dianne Hackborn
Android currently doesn't support mouse input, so has no concept of mouse hover. On Sun, Aug 29, 2010 at 10:24 PM, Nitin Mahajan np.maha...@gmail.comwrote: Hello, Is there a implementation for Mouse Hover events in Android? I want basically the CSS hover to work on my browser, since I am

[android-porting] Waiting for root device /dev/mmcblk0p1

2010-08-30 Thread PREMRAJ SV
Hello all, I am trying to port Android to Hawkboard. Using SD card to load my filesystem. Created a bootable partition in SD card mmcblk0p1. Copied my filesystem. After inserting in the target board, when booting i am getting the following boot log. My SD card is not being detected.

[android-porting] mouse cursor alpha blending issue

2010-08-30 Thread Nitin Mahajan
Hello, I am trying to display a mouse cursor in rowboat. In the file windowmanagerservice.java I have replaced the cursor drawing code with the following lines to draw a png instead of the default cursor. Bitmap _scratch = BitmapFactory.decodeFile(arrow.png); mCanvas.drawColor(0x0);

[android-porting] Fwd: copybit format conversion issue, for help

2010-08-30 Thread Simon Chan
Hi, Mathias, Sorry to disturb you, but can you say something about the format issue? Many thanks! BR. Simon -- Forwarded message -- From: Simon Chan simonchan1...@gmail.com Date: 2010/8/27 Subject: Re: copybit format conversion issue, for help To:

Re: [android-porting] mouse cursor alpha blending issue

2010-08-30 Thread Nitin Mahajan
Hello Dianne, On Mon, Aug 30, 2010 at 1:07 PM, Dianne Hackborn hack...@android.comwrote: Don't use overlays...? :} Seriously, most overlay hardware doesn't support blending. Depending on the hardware, you may be able to get a jagged (1-bpp alpha) shape of the cursor, but some hardware only

[android-porting] How to enable/turning phone into a WiFi hot spot

2010-08-30 Thread guru
Hi All How to enable/turning phone into a WiFi hot spot? I just ported wifi driver to froyo build, it is showing basic APP(as was in eclair) I am not seeing any app related to the tethering in froyo? will it not come by default or do I need to enable it? both APP and other configuration. what

[android-porting] Re: How to enable/turning phone into a WiFi hot spot

2010-08-30 Thread guru
Hi Andy Burns, I am not finding Tethering Portable Hotspot in Wireless Networks... I want to know how to add that in to list. Whether I need to configure some thing? Thanks Gururaja B O On Aug 30, 3:42 pm, Andy Burns usenet.apr2...@adslpipe.co.uk wrote: guru wrote: How to enable/turning

Re: [android-porting] Waiting for root device /dev/mmcblk0p1

2010-08-30 Thread Ashwin Bihari
Prem, You didn't build the MMC/SD support in the Kernel, so it wasn't detected but the Kernel has to wait for it to appear. Check your Kernel configuration. Regards -- Ashwin On Mon, Aug 30, 2010 at 2:55 AM, PREMRAJ SV svpre...@gmail.com wrote: Hello all,    I am trying to port

Re: [android-porting] Waiting for root device /dev/mmcblk0p1

2010-08-30 Thread PREMRAJ SV
Hi, I have figured it out the issue is in my bootloader, u-boot does not support SD card. I am trying with new version of u-boot released in may 2010. I am looking for any document to flash u-boot into NAND. I am using ubuntu 9.04 as host. Can anyone tell how to flash u-boot to NAND. --

Re: [android-porting] Waiting for root device /dev/mmcblk0p1

2010-08-30 Thread Ashwin Bihari
Actually no, the issue is in the Kernel since you've already booted into it from your bootloader so it has sufficient support of the SD card to load your Kernel image. Nothing you do or fix in U-Boot will directly affect your Kernel not finding/looking for the SD card. Check your Kernel

[android-porting] : V4l2 Camera Integration

2010-08-30 Thread sandeep kaushik
Hi, I have a query about using v4l2 based driver for camera on android 2.2 platform. Is there any application available for testing camera? Also, what patch that needs to be added on android for supporting v4l2 feature? Regards Sandeep -- unsubscribe:

[android-porting] Query: V4l2 camera android application and porting patch for android 2.1 or 2.2

2010-08-30 Thread Sasa Sasa
Hi Harish, I am currently working on android v4l2 camera intergration. I have already seen discussion on android porting mailing list. By default the camera application uses jni interface of camera i.e frameworks/base/core/jni/android_hardware_Camera.cpp. Could anybody provide me the link for

[android-porting] Re: Does ANDROID(FROYO) have two SurfaceFlinger?

2010-08-30 Thread Jae-Hong Bae
I found that the second surfaceflinger start at DisplayHardware::init(). void DisplayHardware::init(uint32_t dpy) { mNativeWindow = new FramebufferNativeWindow(); ... } The second surfaceflinger thread is FramebufferNativeWindow. That manages only two buffers (the front and back buffer).

[android-porting] Re: kernel panic at keyguard screen

2010-08-30 Thread Michael
Hi again I solved it , it was four things that failed: 1. Memory, I was running with 512M, now with 200M 2. sdhc, It failed trying to access sdhc , now I load the kernel from hd and does not have any sd card inserted. 3. Bluetooth. I have now disabled bluetooth. 4. Bootanim. When I did the 3

Re: [android-porting] Re: How to enable/turning phone into a WiFi hot spot

2010-08-30 Thread Irfan Sheriff
Look at the following file: --- a/overlay/frameworks/base/core/res/res/values/config.xml +++ b/overlay/frameworks/base/core/res/res/values/config.xml @@ -132,6 +132,14 @@ itemeth\\d/item /string-array +!-- List of regexpressions describing the interface (if any) that represent

[android-porting] Fwd: copybit format conversion issue, for help

2010-08-30 Thread Simon Chan
Hi, Mathias, Sorry to disturb you, but can you help say something about the format issue? Many thanks! BR. Simon -- Forwarded message -- From: Simon Chan simonchan1...@gmail.com Date: 2010/8/27 Subject: Re: copybit format conversion issue, for help To:

Re: [android-porting] Learning Porting

2010-08-30 Thread ANKIT SOMANI
This is the best place to start with.. http://source.android.com/porting/index.html Regards, Ankit On 30 August 2010 16:48, Chetan Sheshadri k.chetanshesha...@gmail.comwrote: Hi, Can any of you suggest me on how to learn 'porting android'? Is there any books that I have to read before

[android-porting] Plz remove me from this group than ks!

2010-08-30 Thread 马献伟
-- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] wifi - signal strength

2010-08-30 Thread Robert Greenwalt
If the supplicant is returning an invalid signal strength, it's a supplicant issue, not the applications fault. R On Fri, Aug 27, 2010 at 9:32 PM, Gururaj BO guru.nav...@gmail.com wrote: Hi Robert, Yes it is not showing signal strength on the icon which is displayed on the Notification bar.

Re: [android-porting] Learning Porting

2010-08-30 Thread unikpro k
I'll say start with linux porting first. On Mon, Aug 30, 2010 at 7:21 PM, ANKIT SOMANI ankitsomani...@gmail.comwrote: This is the best place to start with.. http://source.android.com/porting/index.html Regards, Ankit On 30 August 2010 16:48, Chetan Sheshadri

Re: [android-porting] wifi - signal strength

2010-08-30 Thread Irfan Sheriff
Look at wpa_cli for checking on values returned from supplicant # wpa_cli driver rssi It could be that the driver ioctls are failing. On Mon, Aug 30, 2010 at 10:52 AM, Robert Greenwalt rgreenw...@google.comwrote: If the supplicant is returning an invalid signal strength, it's a supplicant

[android-porting] Re: wifi - signal strength

2010-08-30 Thread guru
Hi Irfan, Yes driver ioctls were failing. I made correction in that, now it is showing signal strength. Thanks Gururaja B O On Aug 31, 8:51 am, Irfan Sheriff isher...@gmail.com wrote: Look at wpa_cli for checking on values returned from supplicant # wpa_cli driver rssi It could be that the

[android-porting] Wifi cpu utilization

2010-08-30 Thread guru
Hi All How to calculate the WIFI CPU utilization ? is there any standard method to do it or any other? What factors I need to consider in WIFI to calculate CPU utilization? Thanks Gururaja B O -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: