[android-porting] Re: is android 2.2 UI slower than android 1.6?

2010-07-27 Thread Rony Rado
Hi I'm also trying to port Android 2.2 to arm 926t with 128M SDRAM. And I'm also experience performance issues. The GUI is much slower than in 1.6 Do you have any updates regarding speeding up the system? On Jul 15, 9:14 pm, tom_in_az tom.arroyo...@gmail.com wrote: Did you try ADW Home? Also are

[android-porting] Re: Cannot open /system/etc/wifi/wpa_supplicant.conf: No such file or directory

2010-07-27 Thread guru
Hi Ashwin, Now it is creating wpa_supplicant.conf. I forgot to add driver specific details in external/wpa_supplicant/ Android.mk after adding this the file is copying to that location. Next I am not getting how to provide proper wpa_supplicant.conf for my device. it is now throwing

[android-porting] Re: Regarding Camera Service

2010-07-27 Thread David Grimfors
Sorry, I can´t help you since I haven´t tried using CameraService except through the Camera.cpp. On 19 Juli, 05:27, Raghu raghavendrars...@gmail.com wrote: hi David, Thank you for your idea. After following your thought I got stuck. Here is the explanation. I created camera client in UI

[android-porting] No Gui / black screen

2010-07-27 Thread Retti
Hello, I'll start Android 2.1 on an Arm based Board from SD-Card. I can se the A N D R O I D output on my TFT, and then, the screen goes black. via the serial console I can see, the last commands: Freeing init memory: 136K Warning: unable to open an initial console. init: /init.rc: 145: invalid

[android-porting] dhcpcd must be one-shot to use dynamic args, disabling

2010-07-27 Thread guru
Hi All I am trying to enable wifi, but in logs it is showing V/WifiMonitor( 10[ 1653.370269] init: service '/system/bin/dhcpcd' must be one-shot to use dynamic args, disabling and if i try to connect to wifi then it DHCP request is failing. /WifiStateTracker( 1028): DhcpHandler: DHCP request

[android-porting] Re: compiling a driver

2010-07-27 Thread Srikant
where do i get the kernel source code that is required for driver compilation ? You can use standard Linux Kernel, but you have to apply some Android specific patches to that. what make file do i use ? Kernel Makefile, you can build the Kernel independently from your Android code. can i use

Re: [android-porting] Re: compiling a driver

2010-07-27 Thread osama gamal
Where could I find those android-specific patches!! On Tue, Jul 27, 2010 at 7:52 PM, Srikant w.sreeka...@gmail.com wrote: where do i get the kernel source code that is required for driver compilation ? You can use standard Linux Kernel, but you have to apply some Android specific patches

[android-porting] Android on NO-MMU architecture

2010-07-27 Thread stef lambert
Hello all, I have searched on this list and I have found this post *[android-porting] Lego robotics controller (ARM7) *which says that android is not suitable for MMU-less architecture. I am asking confirmation for this information. This post is one year old, so maybe things are different now..

[android-porting] Stagefright Architecture and OMX Plugins

2010-07-27 Thread Nitin Mahajan
Hello, Is there a documentation explaining Stagtefright architecture(How it interfaces with OMX, Renderer and other components etc) broadly? If I have a OpenMax DL(not IL) implementation on specific architecture, can that be directly used from Stagefright? Or Can it be easily used from OpenCore?

[android-porting] tslib integration

2010-07-27 Thread bjdooks
I've managed to get ts_calibrate working from the tslibonandroid project on sourceforge, but so far the android input system is not taking any notice of it. Is there any patches I need to apply to the repo, or anything else needed to be installed before this will work? The repo is based on recent

[android-porting] DialogTest#testOnWindowFocusChanged failure

2010-07-27 Thread mrieker
I am occasionally getting an assert failure on line 699 of DialogTest.java. It is testing that it received an onFocusChanged() callback after displaying a new window. Seems to me there is a problem with this test: mActivity.showDialog(DialogStubActivity.TEST_DIALOG_WITHOUT_THEME); ...starts

[android-porting] AudioPlayer class

2010-07-27 Thread Daniel Charles
Hi all, I'm interested on learning the difference between using AudioTrack and AudioSink within Stagefreight's AudioPlayer class. I have seen that inside AudioPlayer AudioTrack is used as long as AudioSink was not created. AudioSink gets created only when MediaPlayerService creates a player and

Re: [android-porting] compiling a driver

2010-07-27 Thread Atul Raut
See this link if useful. http://blog.linuxconsulting.ro/2010/04/porting-wifi-drivers-to-android.html Regards Atul On Mon, Jul 26, 2010 at 3:41 PM, noam ngra...@gmail.com wrote: well, i am new to android, but not to linux i have been tasked to port our application to android, and now i need

[android-porting] Beginner of Android, Is the Android 2.1 live windows is released

2010-07-27 Thread Rajan Verma
Dear Sir, I am a beginner of Android and i will be very thankful to you if u help me out of some of the basic problems of android . I have downloaded Android x86 1.6-r2.iso and installed to the hard disk as an operating system. Now when i am playing media files in android x86, media file is

[android-porting] Generic build question from a newbie

2010-07-27 Thread Dennis Gabler
I posted this to the building group but have not seen it yet, the mod may be unavailable-- I have followed along with several of the build threads posted here. I too have been frustrated in trying to get a build to go. Figuring out how to configure all

Re: [android-porting] tslib integration

2010-07-27 Thread Karthik Kannappan
I believe you will need to integrate tslib itno EventHub. Quite a few changes there to be made. Does the drop you have include such changes? On Jul 27, 2010 2:38 PM, bjdooks bjdo...@googlemail.com wrote: I've managed to get ts_calibrate working from the tslibonandroid project on sourceforge,

Re: [android-porting] tslib integration

2010-07-27 Thread Ashwin Bihari
I've added support for TSLIB to Android 1.6 and that's available at http://gitorious.org/android-omap3logic, I also have it working in Android 2.1, but I haven't gotten around to putting those changes anywhere yet.. -- Ashwin On Tue, Jul 27, 2010 at 6:42 PM, Karthik Kannappan

[android-porting] Re: alsa in eclair ,mediaserver can't start

2010-07-27 Thread Weber
Hi, Could you give me some clue? look at the strace log: 1399 mmap2(NULL, 4096, PROT_READ, MAP_SHARED, 11, 0x8) = -1 ENXIO(No such device or address) The first address is NULL,why? Is this the error from the mediaserver src or alsa src or they are not compatible in eclair? Thank you --Weber

Re: [android-porting] tslib integration

2010-07-27 Thread Jim Huang
2010/7/28 Ashwin Bihari abih...@gmail.com: I've added support for TSLIB to Android 1.6 and that's available at http://gitorious.org/android-omap3logic, I also have it working in Android 2.1, but I haven't gotten around to putting those changes anywhere yet.. hi, 0xdroid provides full tslib