Re: [android-porting] Need help on how to execute a ARM executable on Zoom2 board

2010-02-04 Thread pavan savoy
you need to build it statically or write an android.mk for it, to link with android libraries. simplest method is to use --static file, if the utility is simple. regards, Pavan On Thu, Feb 4, 2010 at 4:50 PM, priya priyaopr...@gmail.com wrote: Hi, I have built a ARM executable using

Re: [android-porting] Need help on how to execute a ARM executable on Zoom2 board

2010-02-04 Thread Michael Trimarchi
pavan savoy wrote: you need to build it statically or write an android.mk for it, to link with android libraries. simplest method is to use --static file, if the utility is simple. regards, Pavan On Thu, Feb 4, 2010 at 4:50 PM, priya priyaopr...@gmail.com wrote: Hi, I have built a ARM

[android-porting] RGB565 - RGB888

2010-02-04 Thread WoW
Hi, I have a 24bpp panel. It lost some color with current 16 bit RGB565 setting. How can I conver the setting to RGB888? Thanks! -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Display orientation

2010-02-04 Thread Ashwin Bihari
Greetings, I've got a display for my board that puts the origin (x=0, y=0, z=0) at the top left corner. The display has a resolution of 480x800. Looking at the Android sensor.h[1] indicates that Android considers origin to be the bottom left corner of the display. Is there anyway in software to

[android-porting] Android bring-up

2010-02-04 Thread mahantesh Hunagund
Hi, I have ported Android Eclair version on target hardware and trying to bring it up. After compilation I got boot.img, System.img , userdata.img recovery.img and ramdisk-recovery.img I have flashed boot.img, System.img , userdata.img using fast boot. When I power-up the device, kernel is

[android-porting] Latest Android Kernel Source for OMAP3Evm

2010-02-04 Thread Ashish
Hello, I am looking for latest Android based Kernel source for OMAP3EVM. Bit confused with so many links around. Could any one suggest me the best place to look for? Thank's, Ashish -- unsubscribe: android-porting+unsubscr...@googlegroups.com website:

[android-porting] Android bring-up

2010-02-04 Thread mahantesh Hunagund
Hi, I have ported Android Eclair version on target hardware and trying to bring it up. After compilation I got boot.img, System.img , userdata.img recovery.img and ramdisk-recovery.img I have flashed boot.img, System.img , userdata.img using fast boot. When I power-up the device, kernel is

[android-porting] Error 41 when doing make without any changes.

2010-02-04 Thread [^MiSaTo^]
Hi, I'm trying to compile Android but when i do make it says Error 41. I've been searching in this group but i can't find the same that happens to me. Here are the errors:

[android-porting] android on imx 51

2010-02-04 Thread pawan
can u help me i want to know how we can run on hardware which having imx51 processor -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] Latest Android Kernel Source for OMAP3Evm

2010-02-04 Thread Ashwin Bihari
Start with the Rowboat[1] sources which will get Android 1.6 Donut up on the OMA3VM or the Beagleboard the easiest.. [1] - http://code.google.com/p/rowboat/ Regards -- Ashwin On Thu, Feb 4, 2010 at 6:26 AM, Ashish bless2ash...@gmail.com wrote: Hello, I am looking for latest Android based

Re: [android-porting] Android bring-up

2010-02-04 Thread Ashwin Bihari
What are your Kernel command line arguments? It looks like you have console=none at least, which means you will not get any console output to see what's happening. You may want to change that to your valid debug uart to start with/ Regards -- Ashwin On Thu, Feb 4, 2010 at 4:27 AM, mahantesh

[android-porting] The Binder header files moved: how to track them

2010-02-04 Thread Trey Boudreau
Howdy all, The binder got promoted to its own component between 1.x and 2.x, complete with a distinct library and include file location. If we want to have a single set of C++ sources, how should we check for the location in the makefiles? Thanks, -- Trey -- unsubscribe:

Re: [android-porting] The Binder header files moved: how to track them

2010-02-04 Thread Dianne Hackborn
Unfortunately it isn't possible to have a single set of sources for things that are not in the SDK or NDK. We make sure to maintain compatibility with the official APIs, but with internal things like Binder they can change arbitrarily. I guess all you could do is a lot of makefile and #ifdef

Re: [android-porting] Widget Always On Top

2010-02-04 Thread Dianne Hackborn
If you are modifying the system, just add something that runs in a persistent process (such as phone or system) that creates a window in the desired layer to be on top of other windows. (Note this is not a widget in the android definition, either as a member of android.widget or an app widget

[android-porting] rebuilding reference-ril

2010-02-04 Thread David Kesselring
I'm trying to test an external modem with the emulator. I have been able to change rild and build it. I now need to change reference- ril.c. It builds but the emulator is not picking up the new build. Do any of you have any suggestions? Thanks, D Kesselring -- unsubscribe:

Re: [android-porting] The Binder header files moved: how to track them

2010-02-04 Thread Trey Boudreau
Yeah, I figured as much, but do you have a recommendation as to what makefile variable (and perhaps its range of values) we should predicate on? Thanks again, -- Trey On Thu, Feb 4, 2010 at 2:12 PM, Dianne Hackborn hack...@android.com wrote: Unfortunately it isn't possible to have a single set

[android-porting] Where exactly is /data

2010-02-04 Thread Tomei Ningen
I found that writing to /data/dalvik-cache is surprising fast. Also, the more files I write onto /data, the less free RAM I have left. Does this mean /data is RAM-based file system? If so, how does the contents of /data/dalvik-cache persist across phone reboot? Thanks -- unsubscribe:

Re: [android-porting] The Binder header files moved: how to track them

2010-02-04 Thread Dianne Hackborn
Hm... not sure. Possibly you could use PLATFORM_SDK_VERSION which is the API version of the current platform (Cupcake was 3, Donut 4, Eclair 5 or I mean 6 no I mean 7). On Thu, Feb 4, 2010 at 12:16 PM, Trey Boudreau trey.boudr...@gmail.comwrote: Yeah, I figured as much, but do you have a

Re: [android-porting] Where exactly is /data

2010-02-04 Thread Dianne Hackborn
No it is not. All of /data is one partition that lives on flash. On Thu, Feb 4, 2010 at 1:02 PM, Tomei Ningen tomei.nin...@yahoo.com wrote: I found that writing to /data/dalvik-cache is surprising fast. Also, the more files I write onto /data, the less free RAM I have left. Does this mean

[android-porting] Re: android on imx 51

2010-02-04 Thread Android Zaurus
Hi, I've ported donut and eclair to i.MX515 based smartbook, Sharp NetWalker. http://androidzaurus.seesaa.net/article/130268081.html My patches in github may be helpful for you to get some ideas how to port on to your hardware. On 2月4日, 午後10:39, pawan pawanpatha...@gmail.com wrote: can u  help

[android-porting] Re: Touch screen driver position reporting 0,0

2010-02-04 Thread navlrac
So it seems like its the old power management issue again. Not having power management enabled in my kernel, the Input service thinks the screen is off and drops the ABS_X and ABS_Y events. (Not dropping the events makes things work). Annoyingly it seems not to drop the button_touch event however

[android-porting] Re: Share: How to make android emulator support larger screen

2010-02-04 Thread allstars
i happen to do this one year ago http://groups.google.com/group/android-porting/browse_thread/thread/18ae836676b0282b/894c9f36922f7331?hl=enq=#894c9f36922f7331 On Jan 28, 10:43 am, Jett jett...@gmail.com wrote: Great! Thanks for sharing. On 1月23日, 下午3時20分, James Wang jameswangc...@gmail.com

Re: [android-porting] Re: Touch screen driver position reporting 0,0

2010-02-04 Thread Barry Song
This is really a stupid design in android. On Fri, Feb 5, 2010 at 10:25 AM, navlrac carl.vansch...@gmail.com wrote: So it seems like its the old power management issue again. Not having power management enabled in my kernel, the Input service thinks the screen is off and drops the ABS_X and

[android-porting] Android RIL - RAW IP GPRS Multiple APN Ipaddress

2010-02-04 Thread ShivaP
HI all, I would like to try again getting some help from forum - 1) How is RAW IP GPRS mode handled in Android. In Win Mobile there's Virtual Ethernet Miniport WWAN NDIS Miniport adapter to take care of this. How this happens in Android.? Is there any doc / link related to this. 2) Multiple

[android-porting] Does Android support XGA (1024x768) resolution ?

2010-02-04 Thread Derk
Dear experts Q1: Does Android support XGA(1024x768) resolution? Q2: If not,How can we support XGA resolution ? Q3: Or should we wait Chrome OS ? Many Thanks. -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] Does Android support XGA (1024x768) resolution ?

2010-02-04 Thread Dianne Hackborn
It depends on what you mean by support. It will certainly run on a screen that size (given you have enough RAM available for frame buffers etc). At this point however the screen sizes that are supported by apps on market are described here: