Personal tools

Log in

Changes

From IGEP - ISEE Wiki

Jump to: navigation, search

The Linux kernel

703 bytes removed, 12:40, 26 August 2010
no edit summary
Download the IGEP v2 Linux kernel sources and follow next steps:
<pre>wget http://downloads.igep.es/sources/linux-omap-2.6.28.tar.gz
tar xzf linux-omap-2.6.28.tar.gz
cd [kernel version]
make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- igep0020_defconfig
make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- uImage modules
</pre>
The result will be an uImage file in arch/arm/boot directory. You can install the kernel modules to your target rootfs
<pre>make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- modules_install INSTALL_MOD_PATH=[path to your target rootfs]
</pre>
=== Linux Android wget http://downloads.igep.es/sources/linux-omap-2.6.28.tar.gz tar xzf linux-omap-2.6 (development) .28.tar.gz cd [kernel version] make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- igep0020_defconfig make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- uImage modules
Clone the GIT repository from git.myigep.com. Based on rowboat project tree.
<pre>git clone git://git.igep.es/pub/scm/linux-omap-2.6.git
cd linux-omap-2.6
git checkout origin/linux-android-2.6 -b linux-android-2.6
</pre>
and build with
<pre>make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- igep0020_android_defconfig
make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- uImage modules
</pre>
The result will be an uImage file in arch/arm/boot directory. You can install the kernel modules to your target rootfs
<pre> make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- modules_install INSTALL_MOD_PATH=[path to your target rootfs]</pre>
=== Linux mainline tree (development) ===
0
edits