[android-porting] Re: google Images tab issues on android browser.

2012-08-20 Thread aulty
Hi, it looks like you don't have gps but android still passes provider=gps Make sure that you have these commits, they should fix it: frameworks/base commit 214e9bc4a6242c8edfeced1ec0f802266dc9de29 Author: Steve Block stevebl...@google.com Date: Wed Nov 23 15:16:17 2011 + Make sure

Re: [android-porting] Digest for android-porting@googlegroups.com - 7 Messages in 6 Topics

2012-08-14 Thread aulty
Hi, I'm having a similar problem. Have you resolved your issue yet? Thanks, Matt On Monday, June 18, 2012 6:12:41 AM UTC+1, slreddy wrote: Hi Hackbod, Thanks for your mail, Thanks for confirming the issue can not be memory issue. Can you please suggest me where should I

[android-porting] Re: WIFI architecture

2012-08-10 Thread aulty
Though somewhat outdated, this may help http://blog.linuxconsulting.ro/2010/04/porting-wifi-drivers-to-android.html On Thursday, August 9, 2012 11:35:22 AM UTC+1, venkat k raju wrote: Dear all, let me put this way! if anybody gone through the wifi source code please explain me what

[android-porting] Re: Broadcom STA drvier w/ nl80211

2012-08-02 Thread aulty
Which patch did you apply to get awext in wpa supplicant_6? I have a patch but I think that it's only for wpa_supplicant 0.5.10 Thanks in advance, Matt On Thursday, March 8, 2012 12:28:39 PM UTC, fuzzy7k wrote: I tried this again with v8 WEXT. I get the same error about reloading firmware.

[android-porting] Re: Wifi no longer connects to access point in ICS

2012-08-02 Thread aulty
I'm using the awext driver and wpa_supplicant 0.5.10. Is this configuration still workable? On Tuesday, July 31, 2012 2:43:28 PM UTC+1, aulty wrote: Hi group, I have a device that had wifi working on gingerbread. However, since upgrading the port to ICS, the wifi now fails to connect

[android-porting] Wifi no longer connects to access point in ICS

2012-07-31 Thread aulty
Hi group, I have a device that had wifi working on gingerbread. However, since upgrading the port to ICS, the wifi now fails to connect to an access point. It scans for access points correctly but when I type in the password for an access point and click connect - all I get is this log, no

[android-porting] Re: Settings dialog doesn't list the wifi device

2012-07-27 Thread aulty
Thanks for this. I didn't know why wifi wasn't appearing in the settings menu in ICS until now! On Sunday, June 17, 2012 1:05:38 PM UTC+1, Bastian Hecht wrote: Thanks a lot! This very much looks like my missing piece. Thanks for the hint about automatizing it as well. Bastian On Friday,

[android-porting] Re: Netd errors

2012-05-23 Thread aulty
You need to turn NETFILTER and its dependencies on in your kernel config. Here's some netfilter things I turned on to fix this, you may need a few more things to satisfy dependencies though. CONFIG_NETFILTER_TPROXY=y CONFIG_NETFILTER_XTABLES=y CONFIG_NETFILTER_ADVANCED=y CONFIG_NETFILTER=y

[android-porting] Re: Netd errors

2012-05-23 Thread aulty
Note that I would not expect this problem to stop the boot process, it should just boot without IPTables. Have a look around the rest of the log or post it here to see if someone can help. HTH, Matt On Monday, April 30, 2012 9:40:11 PM UTC+1, Giveen wrote: Having this problem with a port

[android-porting] Re: Errors while building android ICS

2012-05-23 Thread aulty
I believe that the path to the stock arm cross compiler is prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/arm-linux-androideabi/bin/gcc as opposed to the one that it's trying to use in your make command. This toolchain gets setup in build/envsetup.sh

[android-porting] Re: Giving emmc Read/Write Permission

2012-05-23 Thread aulty
You can mount the sd card as rw in the init.rc file. Copy the default one (./system/core/rootdir/init.rc) to your device dir and modify it. Add some command like: mount vfat /dev/block/mmcblk0p1 /mnt/sdcard mount ext4 loop@/mnt/sdcard/system.img /system rw mount ext4

[android-porting] Re: Giving emmc Read/Write Permission

2012-05-23 Thread aulty
You can try modifying the vold.fstab file too On Tuesday, April 10, 2012 2:26:04 PM UTC+1, Ranganath TM wrote: Hi All, I am working on emmc which capacity is about 8gb, and I want to store some data to it by enabling the write permission, I am not getting any thing to make it happen,

[android-porting] Re: Could not stat dex cache directory '/data/dalvik-cache': No such file or directory

2012-05-23 Thread aulty
Is /data mounted? On Wednesday, April 25, 2012 8:42:51 AM UTC+1, Mamatha K wrote: Dear All, Kindly help me in the below issue. I use sdcard to boot android on blaze. When I boot android the below issue is seen. logcat D/AndroidRuntime( 114): AndroidRuntime START

[android-porting] Re: repo?

2012-05-23 Thread aulty
It's a wrapper around git, attempting to take some of the pain out of managing over 40 git repositories manually and having them on the same branch/tag. On Tuesday, April 3, 2012 3:34:53 PM UTC+1, bob wrote: Can someone explain to me the purpose of having the tool called repo? Why can't

[android-porting] Re: Can't find /dev/ion in pandaboard

2012-05-23 Thread aulty
Are you missing CONFIG_ION in your kernel config? On Thursday, May 17, 2012 8:01:52 AM UTC+1, NimeshChanchani wrote: Hi guys, I compiled and flashed aosp android for pandaboard , giving the appropriate lunch option. Before building , but I can't find /dev/ion in the android shell. Do I

[android-porting] Re: Where can i find call function and send message function?

2012-05-23 Thread aulty
If you want to look at the code for the Phone and Messaging apps you want to look in packages/apps/Phone and packages/apps/Mms respectively. HTH, Matt On Saturday, April 28, 2012 5:41:13 PM UTC+1, nick wrote: Hi, I would like to ask where can i find the source code of the function whick

Re: [android-porting] Android GPS JNI implementation is missing

2012-05-23 Thread aulty
./services/java/com/android/server/location/GpsLocationProvider.java has services/jni/com_android_server_location_GpsLocationProvider.cpp as its jni counterpart The file exists in gingerbread. See here:

Re: [android-porting] How to remove android-2.2.1 screen lock feature

2012-05-23 Thread aulty
Thanks for this, I can confirm that commenting out calls to showLocked( ) in KeyguardViewMediator.java still bypasses the lock screen in ICS. On Tuesday, January 18, 2011 4:06:52 PM UTC, Deva R (TI) wrote: to boot without lock and stay unlocked..

[android-porting] Turning on Developer Settings menu options via code

2012-05-23 Thread aulty
Hi, I am porting ICS to a new architecture. I can get to the home screen, but can't navigate anywhere to get to the Development Settings menu as there's a bunch of things going wrong atm. I was wondering if anyone knew how to turn on the Developer Options in order to turn on stuff like show

[android-porting] Google groups deleting posts

2012-05-23 Thread aulty
I've been having some problems posting to these android-* google groups. How come when I try and post a response to someone asking for help It says that my post is going to be moderated, then I look at the thread the next day and it says my post has been deleted!? The google groups web

[android-porting] Re: ICS: Porting dalvik interpreter to new architecture. The default allstubs configuration doesn't compile.

2012-04-18 Thread aulty
If you look in InterpC-allstubs.cpp there is a reference to FINISH_BKPT but no definition meaning that it won't compile On Tuesday, April 17, 2012 3:18:40 PM UTC+1, aulty wrote: bump. Anyone? On Tuesday, March 6, 2012 4:54:37 PM UTC, aulty wrote: Hi group, I'm trying to port ics dalvik

[android-porting] Re: ICS: Porting dalvik interpreter to new architecture. The default allstubs configuration doesn't compile.

2012-04-17 Thread aulty
bump. Anyone? On Tuesday, March 6, 2012 4:54:37 PM UTC, aulty wrote: Hi group, I'm trying to port ics dalvik interpreter to a new architecture. There are some instructions on how to do this in dalvik/docs/porting-guide.html in the aosp. However the fast allstubs configuration that Dvm.mk

[android-porting] ICS hardware requirements

2012-03-13 Thread aulty
Hi group, Does anyone know if there are any officially published hardware requirements for an ICS device? I have so far only managed to find the RAM and non-volatile storage requirements from the CTS document Thanks, Matt -- unsubscribe: android-porting+unsubscr...@googlegroups.com website:

[android-porting] ICS: Porting dalvik interpreter to new architecture. The default allstubs configuration doesn't compile.

2012-03-07 Thread aulty
Hi group, I'm trying to port ics dalvik interpreter to a new architecture. There are some instructions on how to do this in dalvik/docs/porting-guide.html in the aosp. However the fast allstubs configuration that Dvm.mk falls back on if it doesn't know the dvm_arch (where MTERP_ARCH_KNOWN=true)

[android-porting] Re: Disabling GPS in Android build system

2011-11-24 Thread aulty
It turns out those settings didn't work. I did a fix but its been changed upstream in webkit: http://pastebin.com/MgaDqxxe On Nov 18, 10:17 am, aulty matthew.a...@googlemail.com wrote: For anyone interested, adding either: setprop ro.ril.def.agps.value 4 or setprop ro.ril.def.agps.mode 0

[android-porting] Re: Network location on a non-certified device

2011-11-21 Thread aulty
Hi, What device did you try the page on? My device is actually trying to load: http://www.google.com/m?client=ms-android-googlesource=android-home It appears that webkit is making these API calls so should be updating the location information.

[android-porting] Re: Disabling GPS in Android build system

2011-11-18 Thread aulty
For anyone interested, adding either: setprop ro.ril.def.agps.value 4 or setprop ro.ril.def.agps.mode 0 to the device's init.rc file seems to have disabled gps. Cheers, Matt On Nov 15, 3:09 pm, aulty matthew.a...@googlemail.com wrote: It has been suggested to use 'BOARD_HAVE_GPS_HARDWARE

[android-porting] Network location on a non-certified device

2011-11-17 Thread aulty
Hi, My question is: Is it possible to get location information such as that displayed on www.google.co.uk/m on a non-certified device using only wifi and not 3g/ cell tower or GPS signals? Thanks, Matt -- unsubscribe: android-porting+unsubscr...@googlegroups.com website:

[android-porting] Re: Disabling GPS in Android build system

2011-11-15 Thread aulty
by google, it is linked to in this thread: http://groups.google.com/group/android-porting/browse_thread/thread/d89453c6a60d4277 Does anyone see how I could solve this problem without just disabling all location information packages. BTW I'm on Gingerbread. Thanks, Matt On Nov 14, 11:03 am, aulty

[android-porting] Disabling GPS in Android build system

2011-11-14 Thread aulty
The board that I am porting android to does not have gps hardware. When I visit the google mobile page with the default webkit browser using the board it crashes as the gps does not work. I can fix this by editing GeoLocationService.java to not look for gps updates by commenting out this line: