Personal tools

Log in

Changes

From IGEP - ISEE Wiki

Jump to: navigation, search

How to boot from MicroSD Card

942 bytes removed, 11:43, 9 March 2018
MLO + uboot - IGEP COM AQUILA, IGEPv5
sudo dd if=/home/user/u-boot-imx/u-boot.imx of=/dev/sde bs=512 seek=2
Where /dev/sde is your microsd card
 
==MLO + uboot - IGEP COM AQUILA, IGEPv5==
You can find more detailed information about the build procedure on this other [[U-Boot 2014.01.y|howto]]
 
<pre>git clone git://git.isee.biz/pub/scm/u-boot-arm.git
cd u-boot-arm/
</pre>
<span style="line-height: 1.5em;">If you're using IGEPv5 board you should checkout this one:</span>
 
<pre>git checkout origin/u-boot-2014.01.y-omap5 -b u-boot-2014.01.y-omap5
make omap5_igep0050_config CROSS_COMPILE=arm-linux-gnueabihf-
</pre>
Or if you're using IGEP COM Aquila:
 
<pre>git checkout origin/u-boot-2013.07.y -b u-boot-2013.07.y.local
make igep0033_config CROSS_COMPILE=arm-linux-gnueabi-</pre>
After configuration you can build it with:
 
<pre>make CROSS_COMPILE=&lt;set here your cross compiler&gt;</pre>
After build it generate two files:
 
MLO and u-boot.img, you must copy both file into your boot partition.
 
U-boot use self script (enviroment) configuration can be added to boot partition too.
==Kernel==