[android-porting] tethering eth0 interface

2011-03-15 Thread Pavan Savoy
I am trying (what others have already done) - i.e to tether other interfaces via the eth0 interface. i.e to share the eth0 interface unlike the current 3G/GPRS (ppp0 interface). But I am trying to do that from the framework - Tethering.java As I understand - The lower layer NETD @ /system/netd/

[android-porting] when switch to 32 bit graphics icons go black

2011-03-15 Thread extrapedestrian
Hi Im working on MIPS Froyo port, and we had 16bit Framebuffer working, and now I switched to 32bit RGBA format, and all Icons and some GUI elements are completely black. Homescreen background, browser content, jpg images are looking good. Any ideas? -- unsubscribe:

[android-porting] Re: arm-eabi-gcc: error trying to exec 'cc1': execvp: No such file or directory

2011-03-15 Thread Kumar Mohanty
ok cn you tell me what are the multilib needed to built this code On Mar 14, 8:20 pm, Ashwin Bihari abih...@gmail.com wrote: You've installed all the multilib support? I use a Ubuntu 10.10 64-bit system and it has no problem building Android.. Regards -- Ashwin On Mon, Mar 14, 2011 at 5:27

[android-porting] Re: how to switch to software codec from hardware codec in stagefright??

2011-03-15 Thread sjor
Look at OMXCodec.cpp in /frameworks/base/media/libstagefright. You can see the list of codecs in kDecoderInfo[]. Take the software codecs(for example for aac it should be called AACDecoder and in opencore PV.aacdec) to the front of hardware codecs(something like OMX.TI.AAC.decode). Their order is

[android-porting] Android 3D acceleration on VirtualBox

2011-03-15 Thread Suman Saraf
Hello, I am porting android-x86 to work well inside virtualbox. I have managed to get a lot of devices (including multi touch, camera etc.) working. Now I am looking at adding support for 3D graphics acceleration. The way this works for other OS's is via guest additions where you use a

[android-porting] Signal 11 while browsing

2011-03-15 Thread yogi
Hi all, I am running the browser but after some sometime is closes automatically without any warning. after analyzing the log I find that it is because of signal 11. Kindly suggest me how to find the bug area using this code. I am not sure from where it is causing the problem(in WebCore,Or Skia),

[android-porting] Problem in porting Android-Gingerbread on OMAP Blaze board(ES2.1 GP) bring up

2011-03-15 Thread Srinivas Yedla
Hi , Iam trying to bring up the OMAP blaze board(ES 2.1 GP) with Gingerbread Android. But while booting the kernel iam repeatedly getting the below error and screen is not coming up. Please let me know do i need to add something ? Details of Board used: OS Kernel: Linux® 2.6.35 Android:

Re: [android-porting] Custom Boot Animation, including animated text

2011-03-15 Thread Dirk Jansen
Hi Dave, for stage 1 the Android text is hard coded in the source file system/core/init/init.c. Take a look into the function console_init_action. Cheers, Dirk 2011/3/14 Dave Smith dasmith1...@gmail.com Hello all - We are customizing the Android platform from the Rowboat project to run

Re: [android-porting] Custom Boot Animation, including animated text

2011-03-15 Thread Dave Smith
Dirk - Thanks so much for the tip! Not only did you point me to the console output line where the text is created (it was actually in the main() function of init.c), but it also pointed out that I can override this behavior by providing an RGB565 image called initlogo.rle to display instead of

[android-porting] Re: validating the CDD section 5.3 requirements

2011-03-15 Thread Glenn Kasten
A quick and dirty method to measure the sum of input + output latency is to feedback the speaker output to mic input and then measure the time from an impulse out to the time when the impulse is received back in. Of course this does not isolate the component times, but it gives a rough estimate of

Re: [android-porting] Re: arm-eabi-gcc: error trying to exec 'cc1': execvp: No such file or directory

2011-03-15 Thread Ashwin Bihari
Check out: http://blog.codepainters.com/2010/10/27/compiling-android-sdk-on-ubuntu-10-10-maverick-meerkat/ Regards -- Ashwin On Tue, Mar 15, 2011 at 1:23 AM, Kumar Mohanty kumar0sh...@gmail.com wrote: ok cn you tell me what are the multilib needed to built this code On Mar 14, 8:20 pm,

Re: [android-porting] LIbhardware

2011-03-15 Thread Ashwin Bihari
What exactly about libhardware are you curious about? -- Ashwin On Mon, Mar 14, 2011 at 10:05 PM, vinay kumar vinaykumar...@gmail.com wrote: Hi All,   If any one know how lib hardware work , could u please explain me . Thanks Regards Vinay -- unsubscribe:

Re: [android-porting] tethering eth0 interface

2011-03-15 Thread Robert Greenwalt
Did you add eth\d to config_tether_upstream_regexs in framework/base/core/res/res/values/config.xml? Tethering.java uses that to decide what it can tether to. You shouldn't have to modify code to make this work. R On Tue, Mar 15, 2011 at 4:31 AM, Pavan Savoy pavan.sa...@gmail.com wrote: I am

Re: [android-porting] tethering eth0 interface

2011-03-15 Thread Robert Greenwalt
Sure - if you have network access over bluetooth you could tether other devices via cable or wifi and share the link. BT links are pretty slow though. R On Tue, Mar 15, 2011 at 9:36 AM, Narseo Vallina Rodriguez nar...@gmail.comwrote: Might be possible to follow this approach to tether via

Re: [android-porting] honeycomb source available?????

2011-03-15 Thread Disconnect
They will release the source someday. (As someone said in the bug tracker thread, Android is only about 1 step away on the open source scale from the projects that are open in name only.) Someday has ranged from days to months after the first devices ship. (Longer if you mean working source, as

Re: [android-porting] tethering eth0 interface

2011-03-15 Thread Pavan Savoy
On Tue, Mar 15, 2011 at 10:10 PM, Robert Greenwalt rgreenw...@google.com wrote: Sure - if you have network access over bluetooth you could tether other devices via cable or wifi and share the link.  BT links are pretty slow though. R On Tue, Mar 15, 2011 at 9:36 AM, Narseo Vallina Rodriguez

Re: [android-porting] tethering eth0 interface

2011-03-15 Thread Robert Greenwalt
So, config_tether_upstream_regexs is an array and if I add an item to it, that interface's network can be shared... Ok, I understand this... but as of now - I expected to see atleast ppp0 as one of those array items.. - Am I wrong somewhere? The default is an empty array - it is replaced

Re: [android-porting] tethering eth0 interface

2011-03-15 Thread Narseo Vallina Rodriguez
Might be possible to follow this approach to tether via Bluetooth as well? On Tue, Mar 15, 2011 at 4:31 PM, Robert Greenwalt rgreenw...@google.com wrote: Did you add eth\d to config_tether_upstream_regexs in framework/base/core/res/res/values/config.xml? Tethering.java uses that to decide what

Re: [android-porting] tethering eth0 interface

2011-03-15 Thread Pavan Savoy
Yes, found the xml under device/... Anyway i expected something like rmnet to be added there, but since this is a development platform eth//d makes sense too Thanks for the info.. On 15-Mar-2011 11:04 PM, Robert Greenwalt rgreenw...@google.com wrote: So, config_tether_upstream_regexs is an

Re: [android-porting] Guide for porting?

2011-03-15 Thread Hamilton Vera
Hi Asym, take a look at these http://labs.embinux.org/index.php/Android_Porting_Guide_to_Beagle_Board http://nemustech.blogspot.com/2007/12/android-porting-to-real-target-hw.html Maybe you can get more information if you define your target hardware. []'s Hamilton Vera On Mon, Mar 14, 2011

Re: [android-porting] Modules for GSM?

2011-03-15 Thread Hamilton Vera
Hi there, maybe the best approach is to make it work with your linux desktop, if you did that please let me know how. Probably this device will be handled by a serial driver acm or usb, if you have one device created it is a good start. If the low level driver part is ok we will deal with RIL.

Re: [android-porting] tslib patch causing Android boot to fail

2011-03-15 Thread Hamilton Vera
Hi Diego, maybe you can find more reference/code about that in LTIB. You can download LTIB for imx28 at freescale.com On Sun, Mar 13, 2011 at 8:01 AM, Diego Rondini diego.rond...@kynetics.it wrote: Hello everybody, we're in the progress of porting Android on a Freescale i.MX28 board. We've