Re: [android-porting] Re: Android on OLPC anyone?

2012-11-28 Thread mizmit1222
Hi, Just for your information. I heard that OLPC delivered Xoom in Ethiopia. http://dvice.com/archives/2012/10/ethiopian-kids.php Cheers, 2012年11月28日水曜日 21時32分24秒 UTC+9 baash05: This group seems dead, but I have to ask... I hear there's a git or two.. Can someone point me to one. Also

[android-porting] Re: Android on imx51

2010-04-27 Thread mizmit1222
Hi, Just ignore *.img. $ cd out/target/product/(your product name)/root $ cp -a ../system/* system/ $ cp -a ../data data/ $ tar zcvpf ../rfs.tar.gz . Then untar rfs.tar.gz on your SD or flash. Cheers, On Apr 27, 7:05 pm, hadhami riahi riahi.hadh...@gmail.com wrote: Hello, I'm porting

[android-porting] Re: Problem porting Android to iPhone

2010-04-16 Thread mizmit1222
Hi, I guess you got very close to make a thing happen. ashmem - OK binder - OK /data fs type - ext2 - OK Just double checking, but you do chroot to ext2 fs? One more question. It seems to me adbd is up. Is there any way to connect to your iPhone while booting up through USB or WiFi to get

[android-porting] Re: How to disable Android screen locking

2010-04-01 Thread mizmit1222
Alternatively, set a negative value to screen_off_timeout in settings.db by SQLite access through adb connection. $ adb shell # cd /data/data/com.android.providers.settings/databases # sqlite3 settings.db sqlite update system set value=-1 where name=screen_off_timeout; sqlite .quit $ On Apr 1,

[android-porting] Re: Porting android on adsl router

2010-02-13 Thread mizmit1222
Hi, Display issue could be resolved by using DisplayLink device. http://libdlo.freedesktop.org/wiki/ http://git.plugable.com/gitphp/index.php?p=udlfba=summary But 2.6.20 is too old to port Android kernel, I guess. I've done porting Android back to 2.6.23 and I've never heard any older kernel

[android-porting] Re: What options to enable in kernel config for android support?

2009-10-08 Thread mizmit1222
Hi, There's a Documentations/android.txt in your kernel directory. Regards, On 10月8日, 午後10:21, montamer vijay.vi...@gmail.com wrote: Hi Im new to android and Im trying to compile android for a omap processor i did a git clone and checkout the origin/android-omap-2.6.29 branch I did a

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

2009-08-06 Thread mizmit1222
Hi, I've ported Android on to; Sharp Zaurus C3000 - PXA270 (Armv5) Beagleboard - OMAP3530 (Cortex A8) A router - Marvell Orion 88F5181L (Armv5) Regards, On 8月3日, 午後5:57, Xinyu Chen muddo...@gmail.com wrote: On Aug 1, 5:41 am, Elvis Dowson elvis.dow...@gmail.com wrote: Hi,        I'd just

[android-porting] Re: porting android to a custom board casusing SIGSEGV

2009-07-29 Thread mizmit1222
Hi, I guess you hit across a famous TLS issue. See the first diff applied to bionic_tls.h. http://pastebin.com/f3da569bf diff --git a/libc/private/bionic_tls.h b/libc/private/bionic_tls.h index da34344..ba86d2a 100644 --- a/libc/private/bionic_tls.h +++ b/libc/private/bionic_tls.h -81,7 +81,8

[android-porting] Re: Error in lowmemorykiller.c NR_ACTIVE' undeclared (first use in this function)

2009-06-16 Thread mizmit1222
Hi, - rem = global_page_state(NR_ACTIVE) + global_page_state (NR_INACTIVE); + rem = global_lru_pages(); Regarding configuration, check Documentations/Android.txt. And make sure *not* PMEM turned on. Good luck, On 6月16日, 午後1:44, Neo zingafri...@yahoo.com wrote: I am porting

[android-porting] Re: export the Term

2009-06-15 Thread mizmit1222
Hi, $ cd mydroid $ source build/envsetup.sh $ cd development/apps/Development --- remove use-library com.google.maps line from AndroidManifest.xml - - - $ mm $ adb install mydroid/out/target/product/generic/system/app/ Development.apk Then navigate through Dev Tools - Terminal Emulator on

[android-porting] Re: Porting android on OMAP

2009-06-14 Thread mizmit1222
Hi, I guess you use Mistral's prebuild image of Android for OMAP3530EVM. It works for me fine without any issue. Job controll is turned off message can be ignored. It's harmless. adb logcat gives you detail messages what is going on in Android. $ export set ADBHOST=your EVM address $

[android-porting] Re: boot freeze (I.mx27)

2009-06-11 Thread mizmit1222
Hi, Double check your /init.rc. You may miss some setprop lines in your script. Good luck, On 6月11日, 午後4:56, xro romanen...@hotmail.com wrote: that's the logcat! It appears that is an ActivityManager error D/AndroidRuntime( 1992): AndroidRuntime START D/AndroidRuntime( 1992): CheckJNI

[android-porting] Re: MX27 Android porting problems

2009-06-11 Thread mizmit1222
Hi, I'm not sure though, this patch may be helpful. -- services/java/com/android/server/PowerManagerService.java -- index bbca401..6e01e5b 100644 @@ -350,7 +350,7 @@ class PowerManagerService extends IPowerManager.Stub implements LocalPowerManage

[android-porting] Re: Help! Porting Android to PXA270 board

2009-05-28 Thread mizmit1222
Hi, Following links may be helpful because gumstix verdex pro is PXA270 based. http://www.gumstix.net/wiki/index.php?title=Category:How_to_-_Android http://labs.beatcraft.com/en/index.php?Android Good luck, On 5月26日, 午後7:53, Twinkle moricetwin...@gmail.com wrote: I am a fresher in Linux and

[android-porting] Re: Change Android Screen Resolution

2009-05-20 Thread mizmit1222
Hi, Try omapfb.mode instead of omapfb:mode. My kernel option, which works for me fine, is; omapfb.video_mode=800x600mr...@60 The option depends on driver version. http://groups.google.com/group/beagleboard/browse_thread/thread/4b65cd007fd85ea8/a158dd6f6ad1c25f Hope this helps a bit. On

[android-porting] Re: Failure [INSTALL_FAILED_MISSING_SHARED_LIBRARY] in PlatformLibrary

2009-05-06 Thread mizmit1222
Hi, PlatformLibrary is a sample of JNI on Android. You will need to install .so, .jar and permission file as well as client apk. Try, $ cd your/mydroid $ source build/envsetup.sh $ cd development/samples/PlatformLibrary/ $ mm You will get following message which shows where each file should be

[android-porting] Re: How does Dalvik VM work?

2009-04-29 Thread mizmit1222
Hi, ps - I watched the video Android-Anatomy-GoogleIO, so that more or less what I know :( Have you watched this session, too? http://sites.google.com/site/io/dalvik-vm-internals Cheers, On 4月29日, 午後9:34, ja...@work jim_za...@hotmail.com wrote: Hi to everybody! I'm not an android

[android-porting] Re: Fw:porting android to omap3 evm

2009-04-28 Thread mizmit1222
Hi, FYI: Mistral Solutions distributes installable Android image file and kernel source code. http://www.mistralsolutions.com/assets/downloads/android.php Cheers, On 4月22日, 午後4:58, cindy_king_1024 cindy_king_1...@126.com wrote: Hi,vishal Thanks ,the color is normal now. But the touch

[android-porting] Re: how to add some key actions from physical keyboard to android

2009-04-28 Thread mizmit1222
Hi, See /system/usr/keylayout/qwerty.kl. KeycodeChecker may come in handy. http://androidzaurus.seesaa.net/article/107106587.html Hope this helps a bit, On 4月28日, 午後12:38, Morris morrischen.c...@gmail.com wrote: Hi All: Now I want to add some key actions from physical keyboard to android

[android-porting] Re: copying my application package to android x86 eeepc running in vmware

2009-03-22 Thread mizmit1222
Hi, Alternatively, mount your Android virtual disk with other Linux virtual machine, such as Ubuntu VM. After installing Ubuntu VM, edit the Ubuntu.vmx file to tell your android image as second disk. It would look like this; scsi1.virtualDev = lsilogic scsi1:0.present = TRUE scsi1:0.fileName =

[android-porting] Re: WVGA panel working with Android

2009-02-22 Thread mizmit1222
Hi, This patch may be helpful. http://review.source.android.com/Gerrit#change,1552 On Feb 21, 8:14 pm, trac-er sbran...@gmail.com wrote: The Android code is hard coded to BGR565.  It does not seem to respect RGBA888.  I did a quick fix and actually got RGBA888 working quite well with a WVGA

[android-porting] Re: Android SDK 1.0 Port to PXA270 Init Seg Fault

2009-02-14 Thread mizmit1222
Hi, Did you add ashmem driver to your kernel? On 2月13日, 午前8:58, bfriedman bfriedma...@gmail.com wrote: Hello, I am working on porting android to a PXA270 development board. I have followed the numerous instructions that are supplied out there for extracting the root file system from

[android-porting] Re: Supported devices on x86 hardware

2009-01-27 Thread mizmit1222
Hi, I've only tried to port cupcake, which means kernel is 2.6.27. 1) VMPlayer 2) Ethernet: pcnet32 Video: vesafb 3) http://pastebin.com/f26fe5376 4) No sound yet. VGA (vga=785) and SVGA (vga=788) work fine. On XGA (vga=791), Sprite Text in API Demos won't work. 1) EeePC 901 2)

[android-porting] Re: Android x86?

2008-12-21 Thread mizmit1222
Hi, Can you add rootdelay option to kernel cmdline? like, rootdelay=8? On 12月21日, 午後5:00, Huan Truong huan...@gmail.com wrote: I tried to install from the install USB disk to my other USB disk on my eeePC 900HA (with my hard drive taken out), and I am currently stuck shortly after the screen

[android-porting] Re: How to compile external packages using android toolchain.

2008-12-14 Thread mizmit1222
Hi, In your mydroid/external directory, there are lots of tools compiled for Android user land, like good old ping command. You can add your source code in the directory and Android make takes care of the rest. Please refer my previous post.

[android-porting] Re: How to use Qwerty keyboard to select icon and menu

2008-12-10 Thread mizmit1222
 am, Jinjun [EMAIL PROTECTED] wrote: Hi Reed, I am using USB mouse and keyboard. How do I change the kpad driver? Thanks, Jinjun On Dec 9, 7:42 pm, mizmit1222 [EMAIL PROTECTED] wrote: Hi, I guess your display driver doesn't support panning function. Each time you press the cursor key