Difference between revisions of "PandaBoard ES uboot howto"

From eLinux.org
Jump to: navigation, search
(Created page with "== Getting the Source == to get the source code for u-boot, clone a copy of the linaro u-boot stable tree: <pre> mkdir pandaboard-es cd pandaboard-es git clone git://git.linaro...")
 
(Getting the Source)
Line 9: Line 9:
 
cd u-boot-linaro-stable
 
cd u-boot-linaro-stable
 
git checkout -b pandaboard-es 2011.11.2
 
git checkout -b pandaboard-es 2011.11.2
<pre>
+
</pre>
  
 
== Configure and Compile ==
 
== Configure and Compile ==
Line 18: Line 18:
 
make omap4_panda_config
 
make omap4_panda_config
 
make
 
make
<pre>
+
</pre>
  
  

Revision as of 15:20, 5 December 2011

Getting the Source

to get the source code for u-boot, clone a copy of the linaro u-boot stable tree:

mkdir pandaboard-es
cd pandaboard-es
git clone git://git.linaro.org/boot/u-boot-linaro-stable.git
cd u-boot-linaro-stable
git checkout -b pandaboard-es 2011.11.2

Configure and Compile

to configure and compile u-boot for PandaBoard ES do the following:

make omap4_panda_config
make


Copy Files

copy the MLO and u-boot images to the boot partition of your mounted sd card

cp MLO /media/boot
cp u-boot.img /media/boot
sync

make sure you unmount your sd card prior to removing it from the host pc.