Re: [android-porting] Re: Cannot start volume '/sdcard' (volume is not bound) error using vold

2009-11-12 Thread sreedhar b
development/data/etc/vold.conf file media_path to the correct path as per your device file system from the adb shell and find /class/mmc/mmc0 or similar exists. Then build it and see. On Nov 10, 11:24 am, sreedhar b sreedhar...@gmail.com wrote: I have seen this problem in cupcake versions also

Re: [android-porting] Re: Cannot start volume '/sdcard' (volume is not bound) error using vold

2009-11-12 Thread sreedhar b
-- -- Regards, Sreedhar On Thu, Nov 12, 2009 at 9:25 PM, sreedhar b sreedhar...@gmail.com wrote: Hi Srikant, In my system, i have something like this, # ls -l /sys

[android-porting] SDcard mount problem with vold

2009-11-09 Thread sreedhar b
Hi All, I am seeing similar problem as is highlighted in the below link in my environment, http://groups.google.com/group/android-developers/msg/9e4c3176ef685f9e 1. Manual mounting of sdcard If i run the below command manually after the android boots up, $mount -t vfat /dev/block/mmcblk0

[android-porting] Re: SDcard mount problem with vold

2009-11-09 Thread sreedhar b
Sorry the mmc partition in my system is different. The correct command i am using : mount -t vfat /dev/block/mmcblk1p1 /sdcard , earlier i wrongly said as mount -t vfat /dev/block/mmcblk0 /sdcard Regards, Sreedhar On Mon, Nov 9, 2009 at 3:53 PM, sreedhar b sreedhar...@gmail.com wrote: Hi All

Re: [android-porting] Re: SDcard mount problem with vold

2009-11-09 Thread sreedhar b
ums_path /devices/platform/usb_mass_storage/lun0 } Regards, Sreedhar On Tue, Nov 10, 2009 at 8:27 AM, abukustfan abukust...@gmail.com wrote: Hi, Did you modified your vold.conf? On Nov 9, 11:19 pm, sreedhar b sreedhar...@gmail.com wrote: Sorry the mmc partition in my system is different

Re: [android-porting] Re: Cannot start volume '/sdcard' (volume is not bound) error using vold

2009-11-09 Thread sreedhar b
? On Nov 4, 10:41 pm, sreedhar b sreedhar...@gmail.com wrote: Hi All, Iam seeing the SDcard mount issue with the donut release 1.6_r1. This uses vold. Please see the below log portion for details: # I/vold( 620): Android Volume Daemon version 2.0 I/vold( 620): New MMC

Re: [android-porting] Re: SDcard mount problem with vold

2009-11-09 Thread sreedhar b
/mmcblk1p1 /sdcard Regards, Sreedhar On Tue, Nov 10, 2009 at 11:52 AM, abukustfan abukust...@gmail.com wrote: Did you try this? https://gforge.ti.com/gf/project/omapandroid/mailman/?_forum_action=ForumMessageBrowsethread_id=1640action=ListThreadsmailman_id=22 On Nov 10, 2:43 pm, sreedhar b

Re: [android-porting] Re: SDcard mount problem with vold

2009-11-09 Thread sreedhar b
am not sure about your platform, maybe it should be /devices/ platform/xxx... try below on target board and find the path. # ls /sys/devices/platform On Nov 10, 4:25 pm, sreedhar b sreedhar...@gmail.com wrote: Yes i tried this. Even after doing this i am getting these errors: E/vold

[android-porting] Cannot start volume '/sdcard' (volume is not bound) error using vold

2009-11-04 Thread sreedhar b
Hi All, Iam seeing the SDcard mount issue with the donut release 1.6_r1. This uses vold. Please see the below log portion for details: # I/vold( 620): Android Volume Daemon version 2.0 I/vold( 620): New MMC card 'MMC08G' (serial 520946106) added @

[android-porting] Re: DevTools application not seen in Android 1.5

2009-08-21 Thread sreedhar b
it does, Development.apk needs t be signed with the platform certificate of the device you are installing it on. It will still install if this certificate doesn't match, but there will be some things in it that don't work. On Wed, Aug 19, 2009 at 5:10 AM, sreedhar b sreedhar...@gmail.com wrote

[android-porting] DevTools application not seen in Android 1.5

2009-08-19 Thread sreedhar b
Hi , I am using Android 1.5 on my hardware platform . In the menus list am not able to see the DevTools application while the same was observed to be available on the emulator for Andriod 1.0 . I am getting the following messages: D/PackageManager( 631): Scanning app dir /system/framework

[android-porting] Where can i find the pixelflinger source code ?

2009-06-11 Thread sreedhar b
Hi Dave, I am seeing the following link: http://groups.google.com/group/android-platform/browse_thread/thread/8b6547ed2f69aaf0 Surfaceflinger is the abstraction for the 2D graphics engine. I'm not sure I would agree with the statement control all the display dispatch, because there is a

[android-porting] video display parameters inside android_surface_output significance??

2009-06-11 Thread sreedhar b
Hi, What is the significance of displayWidth, displayHeight, frameWidth, frameHeight parameters inside android_surface_output.cpp?? status_t ret = mSurface-registerBuffers(displayWidth, displayHeight, frameWidth, frameHeight, PIXEL_FORMAT_RGB_565, mFrameHeap); status_t ret =

[android-porting] Re: How the video display size making use of resize and rotation is set under Android

2009-06-09 Thread sreedhar b
a 3gp video file (176x144) from browser through streaming, it plays at 352x288. Thanks and Regards, HarishKumar.V On Fri, Jun 5, 2009 at 9:00 PM, sreedhar b sreedhar...@gmail.comwrote: Hi Harish, I think the video view widget am using is by default available inside android. It uses

[android-porting] where exactly the resize algorithm implementation inside surface flinger is performed for the use case of video playback

2009-06-09 Thread sreedhar b
Hi, With regards to the below discussion: http://groups.google.com/group/android-porting/browse_thread/thread/e2259c8b19e5702e Anybody has the idea as where exactly the resize algorithm implementation inside surface flinger is performed for the use case of video playback ? Regards, Sreedhar

[android-porting] Re: How the video display size making use of resize and rotation is set under Android

2009-06-05 Thread sreedhar b
is not full screen, the problem is probably a layout issue. On May 7, 5:46 am, sreedhar b sreedhar...@gmail.com wrote: Hi Dave, I have two setups: 1. In this hardware setup, my touch screen driver is working. And the specific configurations are: @PATH ../packages\apps\Music\res drawable

[android-porting] Re: How the video display size making use of resize and rotation is set under Android

2009-06-04 Thread sreedhar b
:46 am, sreedhar b sreedhar...@gmail.com wrote: Hi Dave, I have two setups: 1. In this hardware setup, my touch screen driver is working. And the specific configurations are: @PATH ../packages\apps\Music\res drawable-finger drawable-land-finger layout-finger layout-land

[android-porting] Re: adb not connecting with cupcake

2009-06-04 Thread sreedhar b
Hi twebb, Before building for my new target, i have tried building for dream retaining only things required to see how it works. I was able to build successfully for dream. I tried the similar proceedure as specified in the below link for my new target:

[android-porting] building for dream and building for new target

2009-05-26 Thread sreedhar b
Hi, Before building for my new target, i have tried building for dream retaining only things required to see how it works. I was able to build successfully for dream. I tried the similar proceedure as specified in the below link for my new target:

[android-porting] Re: Enable PVLOGGER

2009-05-15 Thread sreedhar b
into pvlogger.txt will capture logs from PVPlayerEngine and PVMFOMXAudioDecNode only. #echo 8,PVPlayerEngine /sdcard/pvlogger.txt #echo 8,PVMFOMXAudioDecNode /sdcard/pvlogger.txt On Thu, May 14, 2009 at 8:28 PM, sreedhar b sreedhar...@gmail.comwrote: Hi Freepine, Thanks. I am getting

[android-porting] Re: Enable PVLOGGER

2009-05-14 Thread sreedhar b
to create a file /sdcard/pvlogger.txt and writing 8 into it will enable all pv logs. #echo 8 /sdcard/pvlogger.txt On Mon, May 11, 2009 at 9:23 PM, sreedhar b sreedhar...@gmail.com wrote: Hi, I followed the instructions provided by Freepine as indicated in the below thread: http

[android-porting] Enable PVLOGGER

2009-05-11 Thread sreedhar b
Hi, I followed the instructions provided by Freepine as indicated in the below thread: http://groups.google.com/group/android-porting/browse_thread/thread/e6391e4fc025bf60?hl=en 1. cd android_root 2. touch external/opencore/oscl/oscl/osclbase/src/pvlogger.h //the pvlogger.h is already present

[android-porting] Usage of pvplayer_engine_test for direct display

2009-05-07 Thread sreedhar b
Hi, I am using the pvplayer_engine_test for doing some video tests. I have used the following command : pvplayer_engine_test -test 803 803 -source /sdcard/test.mp4 This generates the decoded video and audio as output files mentioned below: test_player_playuntileos_test_mp4_video.dat

[android-porting] Re: C to CPP conversion (or vice-versa) based on the package type having C or CPP.

2009-04-22 Thread sreedhar b
Hi fadden, Thanks. The library which i am using has exteral C linkage definition incorrect in some of the header files. Regards, Sreedhar On Tue, Apr 21, 2009 at 8:19 PM, sreedhar b sreedhar...@gmail.com wrote: Hi fadden, my libmyusecase is having *.c files and all my header files

[android-porting] Re: C to CPP conversion (or vice-versa) based on the package type having C or CPP.

2009-04-21 Thread sreedhar b
PM, fadden fad...@android.com wrote: On Apr 20, 4:56 am, sreedhar b sreedhar...@gmail.com wrote: I have a use-case library having *.cpp files. And i made an application with *.c extension. I included the above said library as a shared library part of the Android.mk for building

[android-porting] C to CPP conversion (or vice-versa) based on the package type having C or CPP.

2009-04-20 Thread sreedhar b
Hi All, I have a use-case library having *.cpp files. And i made an application with *.c extension. I included the above said library as a shared library part of the Android.mk for building the application. I am getting errors showing undefined reference to API's of use-case library that i used