Personal tools

Log in

Changes

From IGEP - ISEE Wiki

Jump to: navigation, search

IGEP GST FRAMEWORK 2.00.20

14 bytes added, 10:53, 21 December 2010
Prepare the Enviroment
It's a requisite configure your kernel properly for build this package:
<pre>a) ISEE Kernel (git.igep.es)
source /usr/local/poky/eabi-glibc/environment-setup-arm-none-linux-gnueabi
make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- igep0020_defconfig
</pre><pre>b) Linaro Kernel (http://git.linaro.org/gitweb?p=kernel/linux-linaro-2.6.35.git;a=summary)
source /usr/local/poky/eabi-glibc/environment-setup-arm-none-linux-gnueabi
make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- omap3_defconfig
 </pre><pre>c) Linaro Ubuntu Kernel (http://git.linaro.org/gitweb?p=ubuntu/linux-linaro.git;a=summary)
Create a new file with this content:
 
echo "Setting environment for armel cross-compile"
export DEB_BUILD_ARCH=armel
export DEB_HOST_ARCH=armel
 
Save it as file with the name enviroment
source enviroment
Enter in the linaro ubuntu directory and for build you should do:
 
&gt;&gt; cd ${linaro}
&gt;&gt; fakeroot/rules clean
&gt;&gt; fakeroot/rules binary-linaro-omap
 
</pre>