[android-porting] Re: What kind of debug output statement is valid in getaddrinfo.c?

2011-05-24 Thread 捷超 王
Anyone knows? On May 20, 5:17 pm, 捷超 王 ee07b...@gmail.com wrote: Hi, developers: I am currently developing an IPv6 DNS resolver on Android-x86 platform in socket programming in C so I would like to modify some code in / home/ubuntu/android-x86/bionic/libc/netbsd/net/getaddrinfo.c. I want to

[android-porting] Re: android 2.1 screen resolution and orientation

2011-05-24 Thread Manoj Kumar
Hi Jack, I tried your suggestion but the touch screen is still acting 90 degree shifted. the main lock screen should open by a horizontal swipe but it opens with a vertical swipe (and hence everything else after that is 90 deg shifted) The s3c_ts.c (samsung SMDK6410) file which i am using for

[android-porting] Re: android 2.1 screen resolution and orientation

2011-05-24 Thread Manoj Kumar
Hi Jack, I did one more experiment i checked the original resolution and original touchscreen config without any change That is 320x240 and touch ABS_X=800, ABS_Y=480 This also has touch shifted by 90 deg and the image comes to only 75 % of the screen (which is i think ok considering the

[android-porting] source code`

2011-05-24 Thread pandu
Hi I am newbie to android porting. can anyone please help me how to download source codes and tool chains for android on beagle board??? -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Applications for RIL testing and development

2011-05-24 Thread paldan
Hello, I'm trying to build a custom RIL for my modem; my evaluation kit is AT91SAM9M10-G45 and I'm using Android4SAM http://www.at91.com/android4sam/bin/view/Android4SAM/WebHome (Android 2.1). I'm facing now the problem that in my setup there are not enough applications or options for testing

[android-porting] How all processes share DSO object in memory ?

2011-05-24 Thread wang.sheg
android/bionic/linker/linker.c will load all depend DSO in memory, but I found that the code in linker.c can't promise DSO object is shared in memory. following code come from linker.c 1009 extra_base = mmap((void *)tmp, extra_len, 1010

[android-porting] Re: GPS Porting Problems On The Android 2.3

2011-05-24 Thread Lionel Xu
Hi, Jack Yes, I am a Chinese. You are right, you should move the code s-callbacks = *callbacks; ahead to gps_state_init, otherwise you can not invoke the callback function create_thread_cb. On 5月23日, 下午5时09分, jack luquanh...@gmail.com wrote: Hi, Lionel Xu In my xxx_gps_init , i define

[android-porting] Regarding RIL_REQUEST_SEND_SMS_EXPECT_MORE

2011-05-24 Thread Ajay Kalavakunta
Hi Andriod group, I am trying to develope implementation to support RIL_REQUEST_SEND_SMS_EXPECT_MORE, but I am unable to get this request from the applications. Atleast I wast to understand the usage of this request regarding the format of data which is passed on in this

[android-porting] RIL_REQUEST_SEND_SMS_EXPECT_MORE

2011-05-24 Thread Ajay Kalavakunta
what is the data passed in the request RIL_REQUEST_SEND_SMS_EXPECT_MORE. -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] Applications for RIL testing and development

2011-05-24 Thread Joerie de Gram
Hi, On Tue, May 24, 2011 at 9:57 AM, paldan dnl...@gmail.com wrote: - Is the standard vanilla Android distribution missing some applications such as the SMS one or the Android Market or is there some build options for enabling them in my image? The default SMS application should be Mms.apk,

Re: [android-porting] RIL_REQUEST_SEND_SMS_EXPECT_MORE

2011-05-24 Thread Joerie de Gram
Hi, On Tue, May 24, 2011 at 2:13 PM, Ajay Kalavakunta ajayk...@gmail.com wrote: what is the data passed in the request RIL_REQUEST_SEND_SMS_EXPECT_MORE. This is documented in ril.h, see [1]. Joerie [1]:

Re: [android-porting] source code`

2011-05-24 Thread Ashwin Bihari
Start with the Rowboat project and follow this wiki page: http://code.google.com/p/rowboat/wiki/Source Regards -- Ashwin On Tue, May 24, 2011 at 2:28 AM, pandu pavan.girij...@gmail.com wrote: Hi  I am newbie to android porting. can anyone please help me how to download source codes and tool

[android-porting] Nexus S Surface Flinger Permission

2011-05-24 Thread Naureen
Hello, I am currently got a problem the place where my application needs permission to access the surface flinger. I got the following error Message : W/ServiceManager( 176): Permission failure: android.permission.ACCESS_SURFACE_FLINGER from uid= 1080 pid= 10020

[android-porting] Re: ppp link is not up although pppd deamon is

2011-05-24 Thread Jeffrey
Hi Hamilton, Thank you for responding. I did enable ppp support while building the kernel. However how do I increase debug in pppd? I can't see any logs coming from pppd. On May 23, 11:38 am, Hamilton Vera hamilton.lis...@gmail.com wrote: Hi Jeffrey, make sure that your kernel supports PPP

[android-porting] android serial number

2011-05-24 Thread Tiago Maluta
Hi. I'd like to better understand how Android Serial number is generated for each device? # adb devices List of devices attached 0123456789ABCDEFdevice Since this string is unique for each device and some Android tools like CTS and monkeyrunner depends directly from this identifier when

Re: [android-porting] android serial number

2011-05-24 Thread Ashwin Bihari
We use the processor's (TI OMAPs) Die ID (in our case it's a 64-bit number, so we use the bottom 32-bits) as the device's serial number. We setup the ADB function in the board file for our device and don't modify the ADB gadget itself. You might want to look at something similar in hardware to

Re: [android-porting] GL acceleration in Emulator - demo - at Google IO

2011-05-24 Thread Suman Saraf
Thanks for your help. I managed to hack something and have a basic ut_renderer working on Linux. The android GL implementation can connect to it ok. However, I had to patch a lot of stuff related to glXGetFBConfigs etc. to get this to work. I am afraid the surface is not what android expects it

Re: [android-porting] Re: android 2.1 screen resolution and orientation

2011-05-24 Thread Jacky.Seraph Mun
Hi Manoj, If the original screen resolution is 320x240 and touch pad size is 800x480, then the map relation is between 320x240 to 800x480. Let me take my example. My device is samsung s5pc100-'smdkc100' with original screen resolution 480x272 and touch size 800x480. Then for some reason I need

Re: [android-porting] Re: What kind of debug output statement is valid in getaddrinfo.c?

2011-05-24 Thread Robert Greenwalt
searching that file for log I find syslog(LOG_NOTICE|LOG_AUTH, mylog %s, foo); seems like a reasonable place to start. On Tue, May 24, 2011 at 5:38 AM, 捷超 王 ee07b...@gmail.com wrote: Anyone knows? On May 20, 5:17 pm, 捷超 王 ee07b...@gmail.com wrote: Hi, developers: I am currently

[android-porting] Re: Difficult porting Android on Gumstix Overo

2011-05-24 Thread Mark
http://gumstix.org/create-a-bootable-microsd-card.html is the really long way to do it. It does work but there is a script that makes it much easier. Follow the instructions here: http://wiki.gumstix.org/index.php?title=Android_Prebuilt It is a more fool proof way of doing it. If you are

Re: [android-porting] Re: Difficult porting Android on Gumstix Overo

2011-05-24 Thread manish shakya
Hi Mark, Is your android stable in overo com? Which kernel and android version are you using? I am using overo fire with kernel 2.3.32 and gingerbread 2.3.3. Below is the logs I see in console when kernel crashes BUG: soft lockup - CPU#0 stuck for 61s! [twl4030-irq:203] Modules linked in:

Re: [android-porting] Re: Difficult porting Android on Gumstix Overo

2011-05-24 Thread Mark Meisner
I'm not sure why your kernel is crashing. Android is stable for me on the Overo Tide with the Palo43 board. I'm using 2.6.32, which is the one that comes with the default images ( http://wiki.gumstix.org/index.php?title=Android_Gingerbread). If I had to guess I would say try the newer kernel

[android-porting] SurfaceFlinger implementation

2011-05-24 Thread drjunior
I've been digging around SurfaceFlinger service implementation trying to understand how it is implemented. I started studying the / frameworks/base/services/surfaceflinger/SurfaceFlinger.cpp file and the methods handleRepaint() and composeSurfaces(). What I would like to know is how I can access

[android-porting] Porting Request: Android on Omnia HD!

2011-05-24 Thread lukas_ita
Is possible to port android to i8910?? It has Omap3430, many android device have it! I8910 community is very large...it has a great hardware but symbian os WE CAN GIVE TO THIS PHONE ANOTHER CHANCE...ANOTHER LIFE If someone is interested in this contact meI know all the better modders

[android-porting] Re: Difficult porting Android on Gumstix Overo

2011-05-24 Thread dhaval
Hi Mark, First of all thank for writing solution. I tried the script way of creating bootable SD card. But still facing same problem. Let me describe what I did (to make it sure that I was on correct path) I have folder called Android, hence in the script mkandroidsd I changed following lines:

Re: [android-porting] Re: Difficult porting Android on Gumstix Overo

2011-05-24 Thread manish shakya
Hi DM, What do you have in that Android folder? Manish On Tue, May 24, 2011 at 4:48 PM, dhaval dhaval0...@gmail.com wrote: Hi Mark, First of all thank for writing solution. I tried the script way of creating bootable SD card. But still facing same problem. Let me describe what I did (to