Re: [android-porting] GPS_SPI

2011-01-17 Thread Pavan Savoy
On Mon, Jan 17, 2011 at 1:25 PM, sathyavathi vathi wrote: > HI >     I m working on OMAP 3530 processor.. i m writing a driver program for > GPS with spi interface.. > Can any one guid me how to read and write using spi as i m a beginner( ublx > NE)-6G ) Post this to kernel newbies, I suppose

Re: [android-porting] porting android to omnia HD i8910

2011-01-17 Thread Deva R
first step would be to get linux kernel 2.6.35 or 2.6.32 booted up on the phone, with all peripheral drivers working., android minimal boot would be easier from there.. to begin with, do you have flashing tools for i8910 or manuals?? On Sun, Jan 16, 2011 at 11:05 PM, Anuj wrote: > i was trying

Re: [android-porting] Boot animation restarts with android2.2 port on DM355

2011-01-17 Thread Raghu N.B
Hi All, This issue is solved after taking the patches specified in the below post. http://groups.google.com/group/android-porting/browse_thread/thread/ce4c8939427c29cc?pli=1 Now i'm able to see the home screen of android. Is there any way to interact with the system through minicom. Regards, Ra

[android-porting] How to start a process with another id?

2011-01-17 Thread Tux
Hi all, so I have some classes (of my own) in /framework/base/core/java/ android/app/ so they are running with system idProblem is that I need to read files wrote by an application running in normal path /packages/apps/ . I cannot use external storage because system id cannot access external s

Re: [android-porting] How to start a process with another id?

2011-01-17 Thread Dianne Hackborn
Don't do that. Write a content provider or other component that manages access to the data. For example, content provider has an open() call that allows any process with permission to access the provider the ability to open a file descriptor on whatever file the content provider can access. On M

Re: [android-porting] Stagefright info needed please

2011-01-17 Thread Deva R
regarding stagefright docs, i havent seen anything public yet., for now, source is the documentation ;) though minimal, whatever said a year back here -> still holds true even for gingerbread http://freepine.blogspot.com/2010/01/overview-of-stagefrighter-player.html > SF sits above OMX just like O

Re: Re: [android-porting] How to build and load android on new device - using Froyo.

2011-01-17 Thread Deva R
you can hack generic.mk to have a working build, or if you need to maintain you better create "device//" directory to keep platform/board configuration files. samples http://git.omapzoom.org/?p=device/ti/blaze.git;a=tree;h=refs/heads/froyo;hb=froyo http://git.omapzoom.org/?p=device/ti/zoom2.git;a=

[android-porting] Re: Setting default screen-orientation

2011-01-17 Thread Colin
On 1月13日, 下午11時37分, Dudero wrote: > Hello, > > I have nowhere found how to set the inital screen-orientation of an > android-build. > I know that this is possible in an Android-Activtiy or directly by > manipulating the Android-source... > > But I think it should exists a "clean-solution" like a p

[android-porting] Re: Touchsreen Support in Froyo

2011-01-17 Thread sawyer jim
you need to modify your dirver : input_report_abs(input_dev, ABS_X, 3600 - x + 400); On 1月17日, 上午7时31分, notime2d8 wrote: > In froyo my touchscreen works except that the x cooradinate is swapped > ex.. up goes down, down goes up. In donut this was easy to fix i just > changed this in my touchsc

[android-porting] porting issue about Honeycomb

2011-01-17 Thread MagicAngle
hi all, does anyone have message about Honeycomb ? There is only one video about Honeycomb on internet at CES 2011. Like which linux kernel does Honeycomb use and how to port the new version to x86? Thank you very much! -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: htt

[android-porting] the minimal system server which can display GUI

2011-01-17 Thread xliu
Hi, Magic List, Could you tell me the minimal system server to display a GUI "desktop"? by desktop, i mean the "HOME" activity, wallpaper , and launcher stuffs, which are basic. Here is my story. We are bringing up a prototype of android system basing on cupcake. In current stage, we just want t

[android-porting] Re: Touch screen calibration apk

2011-01-17 Thread Zdravko Stoychev
Thanks, could you share a compiled .apk please? Question: If calibration data is built-in on compile-time, what's the point of having calibrate application anyway? And if you have it be generate the first time you boot up the device, you should have it as an option under settings, because of human

[android-porting] Help build android on mini2440X35

2011-01-17 Thread Trần Văn Tiến
I encountered difficult problem about Android on mini2440 X35 I already build kernel for it again but not be run on X35.run T35 What ever you do about android on x35 help me please. Thank! -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/andr

[android-porting] minimal system server which can display GUI

2011-01-17 Thread Xin Liu
Hi, Magic List, Could you tell me the minimal system server to display a GUI "desktop"? by desktop, i mean the "HOME" activity, wallpaper , and launcher stuffs, which are basic. Here is my story. We are bringing up a prototype of android system basing on cupcake. In current stage, we just w

[android-porting] Install Android On my Sumsung F480

2011-01-17 Thread ahmed alaeddine kaouach
Hi Android gurus, I am thinking about porting Android to my Samsung F480. For this I would like to do a preliminary investigation, whether it is technically possible or feasible. What I know about the target HW is this: Proc: ARM11, 307Mhz, using ARMv6 instruction set. Chipset: BB: Qualcomm MSM628

[android-porting]

2011-01-17 Thread vinu priya
hi, I am working on bluetooth android porting as a fresher if any one is working on the same issues please do help me. Android Donut Linux 2.6.29 PXA310 Littelton board with regards, Vinupriya .R -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/gro

[android-porting] compiling froyo for huawei ascend

2011-01-17 Thread Vadim Sofiyskiy
so iv downloaded the source and compiled a froyo build but the device wont boot... i want to compile a new kernel but kinda lost as how to get the source or add drivers -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

Re: [android-porting] Setting default screen-orientation

2011-01-17 Thread Dianne Hackborn
It is assumed that the screen's native orientation is the default orientation. That is, the default orientation is whatever get when the software rotation of the screen is 0. If you need to make your default orientation a rotation of the screen's natural frame buffer, you will need to modify Phon

[android-porting] How to remove android-2.2.1 screen lock feature

2011-01-17 Thread Elvis Dowson
Hi, I have an embedded device that is not a phone, and it needs to directly go to the home screen and launch an app directly, so that the system directly boots into the android application. I notice that on first boot, the screen lock feature is not activated. It is only on reboot that the s

[android-porting] Has anyone able to run ginger bread on nexus one?

2011-01-17 Thread n179911
Hi, I tried to build android ginger bread source and load it on nexus one. But i am getting the following error: Has anyone else seen it? If yes, how can I fix it? Thank you. 'adb logcat' output: I/CameraService( 697): CameraService started (pid=697) I/AudioFlinger( 697): AudioFlinger's thr

Re: [android-porting] Re: Touch screen calibration apk

2011-01-17 Thread Ashwin Bihari
I don't have a prebuilt APK since the client opted to go the calibration during manufacturing route as opposed to the application. So I can only point you the application for you to build. The application is set to load on system load, but the first thing it does is check for the existence of /etc/

Re: [android-porting] Re: Touch screen calibration apk

2011-01-17 Thread manish shakya
I guess, 0xdroid has tslib in their distribution. Download and try it. It will create executable not apk. On Mon, Jan 17, 2011 at 8:08 PM, Ashwin Bihari wrote: > I don't have a prebuilt APK since the client opted to go the > calibration during manufacturing route as opposed to the application.

[android-porting] Re: Stagefright info needed please

2011-01-17 Thread HV
Thanks Deva, that helps On Jan 17, 11:14 pm, Deva R wrote: > regarding stagefright docs, i havent seen anything public yet., for > now, source is the documentation ;) > though minimal, whatever said a year back here -> still holds true > even for > gingerbreadhttp://freepine.blogspot.com/2010/01