[android-porting] building android hidden code under frameworks/base/core/java/com/android/internal

2009-08-03 Thread riazrahaman
I find that the code under /frameworks/base/core/java/com/android/ internal to have a few package.html files with @hide string, there by hiding all the code in those folders. Also some functions in the code located in those locations have the @hide to find a few functions. As per my

[android-porting] Android on solaris

2009-08-03 Thread Rakesh Kumar
Hi friends, I want to port android on Solaris operating system. Please help me, What are the changes I need to make in android?. And what should be my approach? Regards Rakesh --~--~-~--~~~---~--~~ unsubscribe:

[android-porting] Re: building android hidden code under frameworks/base/core/java/com/android/internal

2009-08-03 Thread Dianne Hackborn
All @hide does is prevent the associated symbols from being exposed in the SDK. The code is still built. On Sun, Aug 2, 2009 at 11:12 PM, riazrahaman rahaman.r...@gmail.com wrote: I find that the code under /frameworks/base/core/java/com/android/ internal to have a few package.html files

[android-porting] Re: Android on solaris

2009-08-03 Thread David Turner
At the very minimum, you will need to write Solaris kernel drivers for Android-specific features like Binder or ashmem. No small feat indeed. After that, you will need to change *any* code that touches the hardware and kernel (e.g. anything in /dev or /proc on Linux), probably make *huge* changes

[android-porting] Re: List of platforms that android has been ported to

2009-08-03 Thread Xinyu Chen
On Aug 1, 5:41 am, Elvis Dowson elvis.dow...@gmail.com wrote: Hi,        I'd just like to start a thread to list all the platforms that android has been ported to, so please feel free to reply to this thread and add to the list. ARM7 core - TI OMAP 3503/3530 platform x86 Has anyone done

[android-porting] Re: android.process.acore has stopped unexpectedly

2009-08-03 Thread Neo
On Jul 31, 7:03 am, Neo zingafri...@yahoo.com wrote: Any ideas fellas, on the above error? Is nobody facing/faced this problem so far? --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website:

[android-porting] Using Binder to pass Objects around

2009-08-03 Thread Christian Kuester
Hi List :-) I'm trying to educate myself how to use Binder on C++ Level. The exact problem is to have two distinct applications share memory over ashmem. I read that I have to pass IMemory Objects over Binder, but I did not find a good starting point how to make a simple hello world which

[android-porting] android on intel atom

2009-08-03 Thread vishal bhoj
Hello Everyone, I saw the livedroid image for x86 machine at http://groups.google.com/group/livedroid Has anyone tried running android on intel atom based boards like this one. http://www.intel.com/Products/Desktop/Motherboards/D945GCLF/D945GCLF-overview.htm I am very interested in trying out

[android-porting] Re: android on intel atom

2009-08-03 Thread Chen Yang
try Yi Sun and Chih-wei's work on android-x86: http://code.google.com/p/android-x86/ They have done some great work for android on x86. -- Chen On Mon, Aug 3, 2009 at 7:54 PM, vishal bhoj vishalb...@gmail.com wrote: Hello Everyone, I saw the livedroid image for x86 machine at

[android-porting] Re: Questions about dexopt entry points

2009-08-03 Thread profect
Does anyone have experience in this? Thanks. On Sun, Aug 2, 2009 at 10:16 PM, profect profect.andr...@gmail.com wrote: Another related question: Is there any mechanism to prevent other processes to use the output odex file before the current process finishes optimization? Thanks. On

[android-porting] Re: rild reboot repeatly because of EOS. Closing command socket.

2009-08-03 Thread Michael Trimarchi
edwardlee lee wrote: Thank for your reply. I used gsm0710muxd that comes from git.omapzoom.org. On Mon, Aug 3, 2009 at 9:08 PM, Michael Trimarchitrimar...@gandalf.sssup.it wrote: I use my daemon vchanneld on the freerunner :), it's very quite similar to the gsm710muxd... and I can connect

[android-porting] Re: rild reboot repeatly because of EOS. Closing command socket.

2009-08-03 Thread Michael Trimarchi
Hi, this is my log :) D/RIL ( 856): onRequest: SETUP_DEFAULT_PDP D/GSM ( 901): [DataConnectionTracker] setState: INITING D/RIL ( 856): requesting data connection to APN 'web.omnitel.it' D/RILJ( 901): [0402] DTMF_STOP D/AT ( 856): MUX[gprs]: AT ATH D/AT ( 856):

[android-porting] Re: Android ported to the Mini2440

2009-08-03 Thread Peeeer
Hi John, I am doing the exactly same thing, just getting start. so how are u going? Did you get something out? On Jun 13, 6:04 am, John Gentilin gent...@gmail.com wrote: I ordered one of these Mini2440 / ARM9 boards produced by Hiteg,  http://www.developmentboard.netas a development platform

[android-porting] shared jar library - source branch under mydroid?

2009-08-03 Thread GiladH
hey, we're developing applications that will use a single 'shared library' jar file. the jar file will be packed as part of the operating system (built packed by us) according to the guidelines described in http://android.git.kernel.org/?p=platform/development.git;a=blob;f=sa... several

[android-porting] Re: Calling System.exit(0) causes Dalvik crash

2009-08-03 Thread fadden
On Aug 2, 7:39 am, Mercury bao...@gmail.com wrote: I'm meeting another issue about libffi issue and would like to have your comment about it. I've had mixed results with libffi -- we had to fix some stuff locally on the platforms we used (search for android to find the changes). It's possible

[android-porting] Re: Calling System.exit(0) causes Dalvik crash

2009-08-03 Thread fadden
On Aug 3, 7:16 am, Mercury bao...@gmail.com wrote: dalvik/vm/interp/InterpCore.h:2533 Stack overflow on method call (top=0x863f52c0 end=0x863b54c0 newB ot=0x863b51f0 size=262144 'nativeGetStackTrace') dalvik/vm/interp/Stack.c:1043 Stack overflow, expanding (0x863b54c0 to 0x863b52c0)

[android-porting] Re: Failed to compile the portable version of mterp in dalvik/vm

2009-08-03 Thread fadden
On Jul 31, 8:13 pm, zhtlancer zhtlan...@gmail.com wrote: How can I examine the log information of dalvik on a non-Android system? I've checked that dalvik writes its log into /dev/log/main, but there is no that device file on my system. So I just placed a empty text file in that place for

[android-porting] Re: Questions about dexopt entry points

2009-08-03 Thread fadden
On Aug 2, 7:07 am, profect profect.andr...@gmail.com wrote: Dexopt can deal with two kinds of files, zip and dex, which are differentiated by command line options, --zip and --dex. I find one entry point for --dex in Android system code. It is in the function dvmOptimizeDexFile() in the file

[android-porting] Re: We want to port android on FPGA as part of master thesis. Please help

2009-08-03 Thread Vince
Linux is ported to the microblaze (softcore) processor that runs on Spartan3E, Spartan3A, Virtex 5,... fpga's from Xilinx. You can find information on the xilinx website or on the petalogix website: http://developer.petalogix.com/ see also this : http://www.petalogix.com/news_events/Linux2.6.20

[android-porting] Re: Android ported to the Mini2440

2009-08-03 Thread John Gentilin
Pr, I finally got a 2.6.30 kernel to compile that will boot a Angstrom rootfs, but I have not taken it any farther. The docs from Google to port in another kernel is lacking to say the least.. Since the official 2.6.30 kernel now has Mini2440 support, my plan is to wait for the Android build

[android-porting] Re: Android 1.5r3 is available

2009-08-03 Thread penguins
Hi, I would like to get android-1.5r3 on my eeepc 901. Where should I go to get this version of Android Thank you. P On Jul 31, 8:54 am, Jean-Baptiste Queru j...@android.com wrote: For everyone working on devices based on Android 1.5, the latest version is now available as android-1.5r3.

[android-porting] Re: rild reboot repeatly because of EOS. Closing command socket.

2009-08-03 Thread edwardlee lee
Hi Michael, Where is your vchanneld source code? Would you please send me a copy of vchanneld source code and tell me how to use it? Best Regards, Edward On Tue, Aug 4, 2009 at 12:36 AM, Michael Trimarchitrimar...@gandalf.sssup.it wrote: edwardlee lee wrote: Thank for your reply. I used

[android-porting] Re: rild reboot repeatly because of EOS. Closing command socket.

2009-08-03 Thread edwardlee lee
Hi Michael, I have got it. I git it at git://panicking.kicks-ass.org/ril.git. Thank for your contribution. Edward On Tue, Aug 4, 2009 at 9:15 AM, edwardlee leeedwardlee.2...@gmail.com wrote: Hi Michael, Where is your vchanneld source code? Would you please send me a copy of vchanneld

[android-porting] where is the arm implemention of tls

2009-08-03 Thread Ouyang Jiannan
hi, everyone, In bionic/libc/Android.mk we can see that x86 uses files pthread.c, pthread-timers.c ptrace.c and __get_tls.c in arm, it uses pthread.c.arm , pthread-timers.c.arm, ptrace.c.arm But I can't find these files or places which generate it So what's the arm support of TLS? Is there a reg

[android-porting] Re: Questions about dexopt entry points

2009-08-03 Thread profect
fadden, thanks for your answer and suggestion. I am reading the related files in depth. entry point may not be a precise term. I mean the place where process 1 forks another process, process 2. Process 2 calls exec to load and run dexopt to optimize a zip file. I didn't find this kind of place.

[android-porting] android-build-make-error

2009-08-03 Thread harry.21121
Hi all, I am facing a subtle problem while building the android The error log is as below. make: *** system/wlan/ti/wilink_6_1: Is a directory. Stop. Does anyone know about this, help me out please. I wasted whole day on this. Thanks in advance. Venkam