Skip to main content

Android: make vnc work and building zImage

Download android kernel from
http://code.google.com/p/android/downloads/detail?name=linux-2.6.25-android-1.0_r1.tar.gz&can=2&q=

Extract to /kernel.git

Edit file following linux-2.6.23-android-m3-rc20-kbde.patch
which can download from http://code.google.com/p/android-vnc/source/checkout
Note: modified a few files such as /kernel.git/Makefile, /kernel.git/drivers/input/keyboard/Makefile, /kernel.git/drivers/input/keyboard/Kconfig, /kernel.git/drivers/input/keyboard/kbde.c

Get config file from your working phone/emulator
$adb pull /proc/config.gz .
$gunzip config.gz
$mv config .config

Put .config file into /kernel.git/
Put it in android environment which can compile
e.g. /mydroid/kernel.git

Building zImage
*******************************
Go into kernel directory
$ cd ~/mydroid/kernel.git/
#don't need to this coz we already have .config => $ make msm_defconfig ARCH=arm
$ make ARCH=arm CROSS_COMPILE=../prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/bin/arm-eabi-

Run vnc
*******************************
Get zImage from kernet.git/arch/arm/boot/zImage to the directory that you need to run emulator

Run emulator
*******************************
Download the kernel image and fbvncserver binary and invoke the following:

emulator -kernel zImage -noskin
Wait some time for the emulator to start and then install the binary:

adb push fbvncserver /data
adb shell /data/fbvncserver
Then redirect the port so the local machine can access the server:

telnet localhost 5554
redir add tcp:5900:5901
And finally:

xvncviewer -noauto localhost

Comments

Popular posts from this blog

How to agree in English - too / neither /either / so

1. To agree with postive statement (Me too) “I love strawberry ice cream.” “Me too!” “I’ve been traveling a lot for work lately.” “Me too.” “I’m going to the beach tomorrow.” “Me too!” 2. To agree with negative statement (Me neither) “I can’t draw very well.” “Me neither.” “I haven’t seen the new movie yet.” “Me neither.” “I don’t go to the gym very often.” “Me neither.” 3. To respond in positive (So do I) “I always sleep late on the weekends.” “So do I.” “I’m from Moscow.” “So am I!” “I studied chemistry in college.” “So did I.” 4. To respond in negative (Neither do I, Nor do I, I don't either) “I don’t think that’s a good idea.” “Neither do I.”“Nor do I.” “I don't either.” “I’m not very outgoing.” “Neither am I.” “Nor am I.” “I'm not either.” “I didn’t like broccoli when I was a kid.” “Neither did I.” “Nor did I.” “I didn't either.”

Book of Answer Privacy Policy

Privacy Policy Privacy Policy Jaa Yoo built the Book of Answer app as a Free app. This SERVICE is provided by Jaa Yoo at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy...

Tealeaf: Set up Magento

To access admin page go to http://127.0.0.1/magento/index.php/admin/ (change localhost to 127.0.0.1) default password for admin is 123123 To change the password  UPDATE admin_user SET password=MD5('mypassword') WHERE username='admin'; change {{base_url}} to the exact web address source: http://www.magentocommerce.com/wiki/general/resetting-admin-password **************************************************************** Login and Add to cart Problem But due to standard restrictions browsers don’t save cookie for domains with no dots in domain name. You can try to access it with http://localhost.com /magento   reference:  http://www.magentocommerce.com/boards/viewthread/4337 Solution Using 127.0.0.1 instead of my machine name.   Note: Don't forget to change the default link in magento configuration page and Prototype_usf target p ag e Anyway, in IE, Fiddler cannot capture 127.0.0.1 host address.  So, using Firefox instead. Go to Tool -> Options -> Network tab -...