bc10/Software

Summary

This section explains the building process of U-Boot, which is used as second bootloader as bc10 starts booting up. This
building process is originally created for BeagleBoard. Since bc10 is a clone of BeagleBoard, the original building method
can be used for bc10's U-Boot. The boot process of bc10 and the installation of U-Boot are discussed at bc10/booting.

Building U-Boot

Development Environment

Setting up Environment Variable

OpenEmbedded Toolchain

Make sure that the development environment is already installed into the host environment before toolchain of
OpenEmbedded Linux is used. The information of setting of the OpenEmbedded development environment is available
at bc10/OpenEmbedded Linux.
To use the toolchain, configure the environment variable.

export PATH=${WORK_DIR}/OE/angstrom-dev/cross/armv7a/bin:${PATH}
export ARCH=arm
export CROSS_COMPILE=arm-angstrom-linux-gnueabi-

rowboat toolchain

Please install the rowboat development environment before rowboat's toolchain s is used. For more information about
setting the development environment for rowboat, please look at bc10/rowboat. To use the toolchain, set up the
environment variable.

export PATH=${WORK_DIR}/rowboat-eclair-dsp/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin:${PATH}
export ARCH=arm
export CROSS_COMPILE=arm-eabi-

Obtain source code

Obtain the source code from git repository.

git clone git://gitorious.org/bc10/u-boot-bc10.git u-boot-bc10

Build

To use OpenEmbedded toolchain, cross-build U-Boot, which is specifically modified for bc10.

make mrproper
make omap3_bc10_config
make 


As the build process is successfully completed, u-boot.bin is produced.
For more information about placing U-Boot into SD Card, please visit at bc10/booting.

Updating source code

As new features are added and/or bugs are fixed, obtain the portions of renewed code.

cd u-boot-bc10/
git pull

About source code repository

The source code of u-boot-bc10 is managed by Gitorious.

Branch

The repository of u-boot-bc10 has three branches shown below.

To build a u-boot.bin, which works on bc10, please use the master branch.

The develop branch is used for testing newly added features. It is always implemented the newest
features, but it sometimes does not work well. Please use the master branch for daily use.

The build branch has been used temporarily until the MACH_TYPE number of bc10 is officially added.
Right now, since the MACH_TYPE of bc10 is officially supported, the build branch is not updated anymore.
In the near future, the build branch may possibly be removed. Please do not use the build branch. For this
matter, please look at README, which is located at the directory of Documentation/arm/README in
the kernel source.~

Origin

The source code of u-boot-bc10 is cloned from the U-Boot repository of DENX, the original is modified
for bc10.

Detail explanations of U-Boot

Basic functions of U-Boot

This section explains basic functions of U-Boot and how to customize it.

Hush, a shell, is already embedded in U-Boot, and U-Boot can be managed by shell scripts and command lines.
Hush is used for customizing functions of U-Boot.

Boot Sequence

Applying a boot command

Control via command lines

Reference

Revision History

2010/07/23 Initial release
2010/09/16 Add bc10 specific source code repository and build process
2011/01/13 Add the information of the source repository and the detail explanation of basic mechanics of U-Boot


Front page   New List of pages Search Recent changes   RSS of recent changes