[android-porting] Re: Booting Android

2010-12-02 Thread Stefan
Hi, concerning my vm_flags failed -1 issue I found http://groups.google.com/group/android-porting/browse_thread/thread/778134e31311aed5/b7e17f2c33310aa7?hl=de&q=bad+vm_flags#b7e17f2c33310aa7 and changed (VM_WRITE | VM_EXEC) to (VM_WRITE). Now, I have new errors Look at this: $root:/ ./init at24

[android-porting] Re: Voice recording issues - ALSA, OMAP

2010-12-02 Thread tnz-
I dunno if its any help but I think the error originates from this line, after u hit record: E/audio_input( 1566): unsupported parameter: x-pvmf/media-input-node/ cap-config-interface;valtype=key_specific_value The problem seems to be related to the MediaPlayer. as im testing it and this error sho

[android-porting] Re: Cannot send SMS

2010-12-02 Thread Lay
Thank you for your reply. >From my logcat messages, it seems that whenever any API under com.android.internal.telephony is used, an exception will be thrown. This is why I was not able to update the SMS center number and my SMS cannot work. Is this a permission problem? Below is what I did in dev

Re: [android-porting] Re: Cannot send SMS

2010-12-02 Thread arindam das
SMS can be sent in two modes PDU and TEXT mode.In PDU mode (which android supports) the SMS SC number has to be present in the PDU.If android doesnot have SMS SC number,it will send it your modem.And ideally your modem should be having the SMS SC number,which will append the SMS SC number into the

[android-porting] Android kernel 2.6.32 on OMAP2430 kernel panic: Attempted to kill init Problem

2010-12-02 Thread Vivek
Dear all, I wanted to boot my omap 2430 SDP board with Android 2.2 using kernel 2.6.32. I've done the following to bring the board up. 1) I've downloaded the kernel from the following link. git://android.git.kernel.org/kernel/common.git 2) I checkout the tag named "v2.6.32" 3) Configu

[android-porting] Re: Building/test a new hal implementation

2010-12-02 Thread Dudero
Hi @all, I have found a solution to build only one libary and not the whole system: build/envsetup.sh # run this at top of your android directory choosecombo # here you have to choose your target cd hardware/module # change to the directory of your libary mm

Re: [android-porting] Android kernel 2.6.32 on OMAP2430 kernel panic: Attempted to kill init Problem

2010-12-02 Thread Ashwin Bihari
You're going to have a REAL hard time getting Android 2.2 up on a system with only 64MB RAM. You'll need a minimum of 128MB for Eclair (2.1), I imagine the same for FroYo (2.2) or even more.. Regards -- Ashwin On Thu, Dec 2, 2010 at 9:12 AM, Vivek wrote: > Dear all, >       I wanted to boot my

[android-porting] Re: How to 'repo' the android with special 'tag'?

2010-12-02 Thread Chih-Wei
Very easy, just use -b option like the branch names. repo init -b android-2.2_r1.3 ... (actually these "tags" are branch names in the manifest repository) On 12月2日, 下午7時48分, Matt Shao wrote: > Hi Guys: >       I used to get Android Source code by following command: >                 ./repo ini

[android-porting] Re: Hardware opengles not working [libhgl.so required?]

2010-12-02 Thread Chih-Wei
Which version of Android are you working on? libhgl.so is the the old name in 1.x. In 2.x it is changed to libGLES... and uses egl.cfg as the config file. Since you have them, I think you are working on 2.x. So don't worry about libhgl.so. Besides these opengl libs, you still a gralloc library to

[android-porting] Switching display resolution dynamically

2010-12-02 Thread Nitin Mahajan
Hello, I am running Android 2.2 on a non mobile phone device, which supports different display devices like TV and VGA.. What would be the right way to tell Surface flinger that the underlying framebuffer device resolution has changed, and now the graphics should be painted with new resolution...

[android-porting] Re: Porting Android2.2 to S5PC100

2010-12-02 Thread Chih-Wei
This is just a kernel issue, unrelated to android. Either you don't include the correct driver, or the driver is broken. The first problem is, what's your kernel source? Basically you have to get the kernel from the vendor, instead of porting yourself. It saves a lot of time. Besides, it is possi

Re: [android-porting] Re: Booting Android

2010-12-02 Thread Hamilton Vera
Hi Stefan, Freescale provides some patches (kernel 2.6.31) 0093-ENGR00117951-2-MX25-Change-default-config-to-enable.patch 0095-ENGR00117392-MX25-Camera-enhancement-to-support-enc.patch 0129-ENGR00118562-MX25-Fix-audio-cannot-work-with-sgtl50.patch 0140-ENGR00118701-MX25-Fix-headphone-plug-in-cause

[android-porting] Re: Hardware opengles not working [libhgl.so required?]

2010-12-02 Thread Nilly
I am using froyo. I have libGLES_android.so but this is software implementation right provided by android? /system/lib/egl has libGLES_android.so libEGL_imx51.so libGLESv1_CM_imx51.so libGLESv2_imx51.so and my egl.cfg is 0 1 imx51 0 0 android I am thinking I am not running on hardware opengles

Re: [android-porting] Re: How to 'repo' the android with special 'tag'?

2010-12-02 Thread Matt Shao
Cool ~ Many thanks Chih ! 2010/12/3 Chih-Wei > Very easy, just use -b option like the branch names. > > repo init -b android-2.2_r1.3 ... > > (actually these "tags" are branch names in the manifest repository) > > > On 12月2日, 下午7時48分, Matt Shao wrote: > > Hi Guys: > > I used to get Andr

[android-porting] Re: Android Binder crash.. in eclair

2010-12-02 Thread Robin Gujjar
Hi Deva and all please see my logcat ... and give me your input thanks in advance == D/AndroidRuntime( 1642): >> AndroidRuntime START << D/AndroidRuntime( 1642): CheckJNI is ON I/( 1643): ServiceManager: 0xad08 I//system/bin/fsck_msdos( 1639): **

[android-porting] Re: Booting Android

2010-12-02 Thread Stefan
Thanks for your help, but do you know if my errors appear because of my kernel version? If yes I have to change to another kernel, but if these errors had nothing to do with kernel 2.6.33 I wouldn't like to change because I have adapted these kernel to my specific hw. On 3 Dez., 04:23, Hamilton V