[android-porting] Porting Froyo lock screen to Eclair

2010-07-09 Thread Soumya
Hi, I want to port Froyo lock screen to Eclair, is it possible? I have the source code of both Froyo and Eclair. Is there are legal constraints from Google. Thank you, Soumya -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] 'msm_camera' no such file

2010-07-09 Thread aBiNg
Hi, This subject has been pasted at the android-platform group, but no answers so far. I wanna try my luck here. I'm porting the G1 msm_camera driver to my Tattoo 'cause, as you know, the open-source libcamera2 could work in G1 and other Google devices, and no way to use libcamera.so(HTC stock do

[android-porting] Re: Compile problem, possibly porting issue

2010-07-09 Thread fadden
On Jul 9, 1:38 am, folone wrote: > I did everything in accordance with this > tutorial:http://source.android.com/source/download.html. But $make fails with > an error: > > host SharedLib: libneo_cgi (out/host/linux-x86/obj/lib/libneo_cgi.so) > /usr/bin/ld: skipping incompatible /usr/lib/gcc/i486-

[android-porting] Re: Android, mini2440, Android Debugger Bridge (ADB)

2010-07-09 Thread Aaron
Ok, the gitorious kernel superficially seems alright until servicemanager crashes. I've tried a number of different root fs though and each case results in the same problem. Therefore the problem must lie with the kernel. Or, I wonder if the error is related to the fact that I am booting from SD ca

[android-porting] at91sam9g45 android

2010-07-09 Thread Retti
Hey, have you fix the problem? I also want to port Android on AT91SAM9G45. I've also tried some things, but I can not get the board to boot android. Can you tell me, how you do this? Whats about the Kernel-spezific Android-Drivers. Where can I get them? The next Problem, I don't understand, I want

[android-porting] Re: Is it possible to calll overridePendingTransition from "Service" (not Activity)

2010-07-09 Thread QasewKim
Dear Dianne Hackborn, I am very glad to see your help. I've always read your posts. so it seems that I have to find some other ways. Thank you very much. On Jul 9, 5:02 pm, Dianne Hackborn wrote: > Sorry you can't do this.  UI flow is tied to activities, so you really need > to make the call f

[android-porting] Compile problem, possibly porting issue

2010-07-09 Thread folone
I did everything in accordance with this tutorial: http://source.android.com/source/download.html . But $make fails with an error: host SharedLib: libneo_cgi (out/host/linux-x86/obj/lib/libneo_cgi.so) /usr/bin/ld: skipping incompatible /usr/lib/gcc/i486-linux-gnu/ 4.4.3/../../../libz.so when searc

Re: [android-porting] Re: Porting an existing Linux device driver to the Android platform

2010-07-09 Thread yenchengwang
hi, I think what the nature lover want is a sensor hardware module~just like the sensors_qemu.c in the development/emulator/sensors ~~ or u can get the htc_sensors.c on the android's git server. 2010/7/9 tungsys > Hi, > > I have a bit confuse about what you are doing : port an i2c dr

[android-porting] Eclair porting on SH4 architecture

2010-07-09 Thread Dinesh Pandian
Hi, I have downloaded Android Donut and Eclair from android repository. When I tried compiling the source code for SH4 architecture, it gave an error saying *build/core/combo/select.mk:71: build/core/combo/linux-sh4.mk: No such file or directory bionic/libc/Android.mk:3: bionic/libc/arch-sh4

[android-porting] Re: Remove Prelink

2010-07-09 Thread Antoine
Yeah it's work in config.mk => LOCAL_PRELINK_MODULE:=false definition.mk => comment tronform_to_prelinked and remove -DSUPPORT_ANDROID_PRELINK_TAG in every android.mk if apriori and soslim it's work but I have still some probleme with the ALSA hardware and alsa lib I put alsa generic audio it's w

Re: [android-porting] Is it possible to calll overridePendingTransition from "Service" (not Activity)

2010-07-09 Thread Dianne Hackborn
Sorry you can't do this. UI flow is tied to activities, so you really need to make the call from there. If you hack things up to be able to poke the window manager like that from elsewhere, you won't be doing it from the actual UI flow so in some cases will not be properly synchronized with it so

Re: [android-porting] question about the Android Git source tree Category

2010-07-09 Thread Dianne Hackborn
Those aren't categories, they are just the first part of the paths of the 100 or so separate git projects of Android. The open source site has a lot of material on retrieving and building: http://source.android.com/source/download.html Note on that

[android-porting] Re: Porting an existing Linux device driver to the Android platform

2010-07-09 Thread tungsys
Hi, I have a bit confuse about what you are doing : port an i2c driver to Android platform ? Android kernel is based on Linux kernel, so there is nothing difference with the driver layer . I thought you need do the driver for Linux kernel first and then apply the Android patch to your kernel . Tu