Re: [android-porting] variables in dynamic library

2010-07-21 Thread David Turner
On Sun, Jul 18, 2010 at 8:34 PM, Liu Xin wrote: > Hi Android Developers, > > This is a question of dynalic linker. where is the variables in shared > library? > let's conside errno in libc. is it in .sbss of libc.so? or it will be in > .bss in the executable? > > errno is a very special case in e

[android-porting] Why are there thousands of warnings when building Android?!

2010-07-21 Thread sws-vinpa
Why are there thousands of warnings when building Android? I don't understand it. Is it because of the wide variety of compilers out there that people use that results in different output when building? Or is it because the code is so poorly written and developers just don't really give a damn?

[android-porting] Re: Problem porting Android to OMAP

2010-07-21 Thread Shailesh
G2 writes: > > Hello, > > I'm using Android on an OMAP3530 board and I have a problem as > described by the log below. The same rootfs (Android 1.6) was working > on my previous custom 2.6.29 kernel. Since I upgraded to 2.6.32, the > system resets itself because of servicemanager is killed by t

[android-porting] Re: Building SQLite

2010-07-21 Thread mah
Is there a reason you feel the need to build it, rather than just taking a copy of one from a Google-provided emulator image? I don't know what needs to be done to build the version that comes with Android sources under Windows, but if you don't mind doing things manually, start by going to http:/

[android-porting] Re: beagleboard - rowboat-eclair kernel panic

2010-07-21 Thread sws-vinpa
Appears that your MMC is in bad shape. Try reformatting the card. If you still get the errors, try a different card. If you are using Linux, I found that using a Windows box to format it initially worked for me, then used 'fdisk' on my Linux machine to format again as mmcblk0p1=fat and mmcblk0p2

Re: [android-porting] servicemanager crashing repeatedly

2010-07-21 Thread Deva R
start with a minimal init.rc, and try - giving full rwx permisison to whole filesystem "chmod 777 -R *" - and make sure your filesystem partition size is good (200MB or higher should be good) On Wed, Jul 21, 2010 at 10:32 AM, Aaron wrote: > Hello! > > I currently have an android kernel 2.6.27

Re: [android-porting] Video playback fails when played from 3DGallery in Froyo

2010-07-21 Thread Deva R
Are you sure you want to play via opencore and not stagefright? >W/PlayerDriver( 1927): Video track fell behind And if you are using h/w codecs, make sure its chosen properly in both the cases. On Wed, Jul 21, 2010 at 1:45 PM, kartik podugu wrote: > When I try to play a file from Gallery applic

[android-porting] Video playback fails when played from 3DGallery in Froyo

2010-07-21 Thread kartik podugu
When I try to play a file from Gallery application in Froyo, (.mp4) Gallery3d -> media player -> play .mp4 file after few seconds of normal video playback, there are frame drops, and eventually throws out error message and cannot play video,as Video lags audio. But if I play the same file using med

Re: [android-porting] About symbol searching scope of shared library

2010-07-21 Thread dinuxlyf
The Linker does not search a symbol in excutable for a shared lib, and a shared lib shall not depend on a executable. Is there any chance to put SA into .so A? 2010/7/21 okwon > I am trying to precompiled binary .so file with bionic libc. In my > case, executable A links .so file B, .so A links