PandaBoard ES uboot howto

From eLinux.org
Revision as of 15:19, 5 December 2011 by Prpplague (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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
<pre>

== Configure and Compile ==

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

<pre>
make omap4_panda_config
make
<pre>


== Copy Files ==

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

<pre>
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.