Letux Kernel

Build

You are looking at an old revision of the page Build. This revision was created by Johannes Schauer.

Table of Content

How to Build the Letux Kernel from Source

Introduction

This describes briefly how to compile the hardware validation kernel from git source. You need to have some ARM cross compiler installed on your host.

Details

Get sources by:

git clone git://projects.goldelico.com/gta04-kernel.git
cd gta04-kernel/
git checkout hw-validation

Build:

export ARCH=arm
export CROSS_COMPILE=arm-angstrom-linux-gnueabi-  # adapt to your toolchain

make distclean
make omap3_gta04_defconfig modules

make menuconfig  # only needed if you want to change the default configuration
make uImage

The result will be the file arch/arm/boot/uImage. Copy this file to the FAT partition of your SD card.

Patches

Patches should follow these guidelines.

Cross compiling toolchain

Under Debian, the most simple way to set up a toolchain for cross compiling for arm is by using the emdebian cross-compiler.

apt-get install emdebian-archive-keyring
echo deb http://www.emdebian.org/debian/ squeeze main >> /etc/apt/sources.list
apt-get update
apt-get install gcc-4.4-arm-linux-gnueabi
export ARCH=arm CROSS_COMPILE=arm-linux-gnueabi-