[android-porting] Re: Can anybody describe a little bit more details about android build structure?

2008-11-10 Thread Rupesh Gujare
Its quiet old and obsolete, and needs update. Regards, Rupesh On Tue, Nov 11, 2008 at 10:59 AM, wangfei <[EMAIL PROTECTED]> wrote: > Hi, > There is a doccument to describe the build system. > > /development/pdk/docs/build_system.html > > Regards > Wang Fei. > > > 2008/11/11 Alex <[EMAIL PROTECT

[android-porting] Re: What's the next step to port android on real target?

2008-11-10 Thread kernel gick
My environment is : > 1. qualcomm BREW BSP(L4/IGUANA) for MSM7500A. > 2. cygwin + RVCT 2.2 on MS Windows > 3. Ubuntu 8.04 on VMWare > 4. qualcomm Linux BSP for MSM7200A (contains Kernel patch) > > 1. You need linux BSP for MSM7500 to boot linux kernel on your hardware. If Qualcomm do not have

[android-porting] Re: Can anybody describe a little bit more details about android build structure?

2008-11-10 Thread wangfei
Hi, There is a doccument to describe the build system. /development/pdk/docs/build_system.html Regards Wang Fei. 2008/11/11 Alex <[EMAIL PROTECTED]> > > The build structure is quite complicated in android, there seems many > variations and targets, and it is not easy to even know which files

[android-porting] Can anybody describe a little bit more details about android build structure?

2008-11-10 Thread Alex
The build structure is quite complicated in android, there seems many variations and targets, and it is not easy to even know which files are actually built, which are not. can anybody explain it a little bit about it? Or there is some docs from Google for it? Thanks. To understand the build struc

[android-porting] Re: What's the next step to port android on real target?

2008-11-10 Thread andre
Hi, Thank you for your kind reply. I've added comments on your post. Thank you, Andre kernel gick 작성: > Hi, > You can use qualcomm kernel to boot up board. and then start android from > NFS. I can help you in doing it. Can you send more details about your > environment, and how are you test

[android-porting] Re: What's the next step to port android on real target?

2008-11-10 Thread andre
Hi, Thank you for your kind description. I have done some works you mentioned. Gergely Kis 작성: > Hi, > > In order to develop for Android, I suggest that you use Linux on your > host system. If your normal environment is Windows, then using VMWare > or VirtualBox to run the Linux part will be p

[android-porting] Re: Android on a Treo (650, 680, 700p, 700w, 750w, 755p, Centro)

2008-11-10 Thread woodbook
Just an FYI. If you set lager value for loglevel in init.rc, like 6, then init process will tell something to us more fluently. On Nov 9, 10:52 pm, john b <[EMAIL PROTECTED]> wrote: > From my experience, turning off the splash screen can make it boot > faster, but it still goes to a black screen

[android-porting] Re: SIGSEGV scanning /system/app

2008-11-10 Thread Matt Reimer
On Fri, Nov 7, 2008 at 2:46 PM, fadden <[EMAIL PROTECTED]> wrote: > > On Nov 6, 10:57 pm, "Matt Reimer" <[EMAIL PROTECTED]> wrote: >> Android is segfaulting when it scans /system/app, apparently once for >> every apk in that dir (I counted 36 segfaults and there are 36 files >> in that dir). Each

[android-porting] Re: Android on OMAP35x ?

2008-11-10 Thread Maxime Petazzoni
Works on Zoom. System runs nice and fast. I'm doing the final touchscreen adjustments right now. On Nov 10, 12:39 am, Maxime Petazzoni <[EMAIL PROTECTED]> wrote: > Hi, > > I have successfully ported Android to an OMAP3EVM board last week, and > will most likely get it working soon on the OMAP Zoo

[android-porting] Re: About android touchscreen

2008-11-10 Thread Sean McNeil
I have submitted patches to Google which adds support of a /system/etc/pointercal (aka. tslib) file for translating coordinates. I didn't add ts_calibrate into the phone, however. That would be nice to have so you can calibrate the screen on 1st install. Anson wrote: > Hi all: > > We use a res

[android-porting] Re: unable to get GUI.

2008-11-10 Thread Brian Swetland
This should not be fatal -- libhgl is the hw openglES library for msm7k and the system will happily fail over to the software gl implementation if it can't load this library. [Anson <[EMAIL PROTECTED]>] > 639 E/GLLogger( 441): couldn't load library (Cannot find > library) > > seems like a lib

[android-porting] Re: unable to get GUI.

2008-11-10 Thread Rupesh Gujare
On Mon, Nov 10, 2008 at 10:40 PM, Anson <[EMAIL PROTECTED]> wrote: > 639 E/GLLogger( 441): couldn't load library (Cannot find > library) > > seems like a library missing. > I tried to search it on RFS. but it do not exist on android RFS. --~--~-~--~~~---~--~~ un

[android-porting] Re: About android touchscreen

2008-11-10 Thread Anson
Hi all: We use a resistance touch screen . the touch screen 's raw input driver will return some ABS_EVENT, and BTN_TOUCH input events, but the value of ABS always too big, and for some reason, the touch screen must re-calibrate. Our solution is like this: we ues touchscreen library such as tsli

[android-porting] Re: unable to get GUI.

2008-11-10 Thread Anson
639 E/GLLogger( 441): couldn't load library (Cannot find library) seems like a library missing. On Tue, Nov 11, 2008 at 12:14 AM, Rupesh Gujare <[EMAIL PROTECTED]>wrote: > Hi, > I am unable to get android GUI. getting following error. > After going through few posts, tried to fix it by addi

[android-porting] Re: Android on OMAP35x ?

2008-11-10 Thread Eugenio
Did you try the instructions that are posted on omapzoom.org website? Maybe it will help you. -Eugenio Maxime Petazzoni wrote: > Hi, > > I have successfully ported Android to an OMAP3EVM board last week, and > will most likely get it working soon on the OMAP Zoom as well. Details > of how much I

[android-porting] unable to get GUI.

2008-11-10 Thread Rupesh Gujare
Hi, I am unable to get android GUI. getting following error. After going through few posts, tried to fix it by adding to init.rc chmod 0771 /dev/fb0 but still unable to fix. Can anyone explain what is going wrong? Regards, Rupesh $logcat I/dalvikvm( 428): System server process 441 has been

[android-porting] Re: Filesystems (yaffs2, jffs2 and nfs)

2008-11-10 Thread David Given
Markus wrote: [...] > The basic idea is, that all mmap > operations are done on yaffs2, as jffs2 does not support them. How many things actually use writeable mmap'd areas? Would it be particularly hard to change those things to use read() and write() instead? jffs2 is a very useful file system,

[android-porting] Re: Filesystems (yaffs2, jffs2 and nfs)

2008-11-10 Thread Markus
Hi, yes, we might change to a different file system, but actually, Android uses yaffs2 as main file system or at least it seems like this if you hack into its configuration files. To be honest, we do not know, if this problem is caused by the file system or something else as we are able to do fil

[android-porting] Re: What's the next step to port android on real target?

2008-11-10 Thread Gergely Kis
On Mon, Nov 10, 2008 at 9:35 AM, kernel gick <[EMAIL PROTECTED]> wrote: > I guess if you don't apply android patches, you can still get Android GUI. You won't get very far without Binder for example. Best Regards, Gergely --~--~-~--~~~---~--~~ unsubscribe: [EMAIL

[android-porting] Re: Android on OMAP35x ?

2008-11-10 Thread Maxime Petazzoni
Hi, I have successfully ported Android to an OMAP3EVM board last week, and will most likely get it working soon on the OMAP Zoom as well. Details of how much I'm allowed to talk about it still need to go through some company processes though -- but the system does work pretty nicely. The http://

[android-porting] Re: What's the next step to port android on real target?

2008-11-10 Thread kernel gick
I guess if you don't apply android patches, you can still get Android GUI. but applications wont work as expected. Better to apply android patches. Can you post your results, with and without applying android patches to kernel? Thanks Gicky On Mon, Nov 10, 2008 at 1:59 PM, Gergely Kis <[EMAIL

[android-porting] Re: What's the next step to port android on real target?

2008-11-10 Thread Gergely Kis
On Mon, Nov 10, 2008 at 8:53 AM, kernel gick <[EMAIL PROTECTED]> wrote: > Hi, > You can use qualcomm kernel to boot up board. and then start android from > NFS. I can help you in doing it. Can you send more details about your > environment, and how are you testing it on baord? This will only wor