Re: [android-porting] Re: vold issues

2010-08-17 Thread Anand Android
Add this line in vold.fstab dev_mount sdcard /mnt/sdcard auto /block/mmcblk0/mmcblk0p1 - Anand On Tue, Aug 17, 2010 at 1:28 AM, Deva R r.deva...@gmail.com wrote: Can you check http://review.omapzoom.org/5228? We need to explicitly place vold.fstab in /system/etc of file system during

[android-porting] Re: Testing Microphone with Android App on OMAP

2010-08-17 Thread Krishna Mohan
hi, try this as per the logcat it seems the capture device is not defined properly hence in line D/ALSAModule( 1128): open called for devices in mode 0... doesnt seem to have any meaning. so instead of this try to open hw:0,0 or hw:0,1 depending on ur card settings. I dont

[android-porting] Rotation does not happen in lock screen and causes flicker

2010-08-17 Thread Soumya
Hi, I have been using Android for a while and found that lock screen is not displayed in landscape mode. My device does not have a QWERTY keyboard but accelerometer is present. One peculiar thing that I found is that I launch an application, say calculator, change to landscape mode and lock the

[android-porting] Re: H264 parser in opencore

2010-08-17 Thread anddev
Thanks Deva/Srikant Can you give me some clue, how to integrate stagefright with h/w codec? just enabling the BUILD_WITH_FULL_STAGEFRIGHT is enough? any doc likes that of opencore integration guide will help. sj On Aug 17, 3:18 am, Deva R r.deva...@gmail.com wrote: I cannt locate the h264

[android-porting] Porting issues cannot be solved

2010-08-17 Thread Solitare
Hi I am new here. Currently doing the media porting of android. When I want to open the music application, it is failed. and I get the following error messages: I/ActivityManager( 1939): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER]

[android-porting] Stopping Ril daemon from apk file

2010-08-17 Thread BilalMujeeb
Hi, I am trying to stop the ril daemon using a test apk and want to restart it later. Using shell setprop ctl.stop ril-daemon setprop ctl.start ril-daemon I am able to stop the server but cannot do so using the application. Any Idea. Thanks in advance Bilal -- unsubscribe:

[android-porting] Re: Porting issues cannot be solved

2010-08-17 Thread sws-vinpa
I would think it had something to do with your layout in the XML file. Maybe check your ArtistAlbumBrowserActivity's layout and check line 25 for the issue. Maybe you can copy/paste a snippet from the file so others can take a look at it. sws-vinpa On Aug 17, 4:09 am, Solitare

[android-porting] Gigabyte gSmart MW702

2010-08-17 Thread Xmister
Hi everyone! I'm interrested in porting android to this device, but first I would like to know that is this possible at all. I mean for example, are there drivers for the hardware in it? It is a WM6.1 based device and it has a Marvell PXA270 520MHz processor, but I can't find who the other hw

Re: [android-porting] My presentation analyzing Android bootup time

2010-08-17 Thread Tim Bird
On 08/17/2010 10:09 AM, Tim Bird wrote: Well, page faults are always inherently slower than reads, It's embarrassing, but I have to correct myself here. An mmap and an access of a single page will likely take longer than a corresponding read. But accessing multiple pages can amortize the cost

Re: [android-porting] Stopping Ril daemon from apk file

2010-08-17 Thread Deva R
shell have root access by default, so it can access all sysfs entry or /dev nodes w/o issues., application dont have root access, and probably a /sys fs or /dev fs entry might require r+w+x access permission., On Tue, Aug 17, 2010 at 8:59 PM, BilalMujeeb bilalmuj...@gmail.com wrote: Hi, I

Re: [android-porting] My own PVLOGGER layer

2010-08-17 Thread Deva R
You can add custom traces by regular LOGE, LOGD macros, on the go (i assume u dont want to develeop full fledged framework) just make sure you have included utils/Log.h try below snip any opencore source file, and you should be good. #include utils/Log.h #define LOG_TAG PV Module ...