A few weeks ago, you touched actualy wroking android on beagleboard on youtube. You can get good infomations for that in http://labs.embinux.org/android-porting-on-beagle.html
This page is my own porting case.
1. Tool chain to use to build kernel
The tool chain version used is Code Sourcery ARM Sourcery G++ 2007q3. http://www.codesourcery.com/gnu_toolchains/arm/releases/2007q3 2. How to get the base tree http://source.mvista.com/git/?p=linux-omap-2.6.git;a=snapshot;h=33d6b... 3. Download patch and extract it.
3. How to Build kernel
cd linux-omap-2.6 patch -p1 < patch make CROSS_COMPILE=arm-none-linux-gnueabi- omap3_beagle_android_defconfig make CROSS_COMPILE=arm-none-linux-gnueabi- uImage You can find Kernel binary uImage will be generated at arch/arm/boot/directory.
|