Skip to content
README.rst 1015 B
Newer Older
.. SPDX-License-Identifier: GPL-2.0+
.. Copyright (C) Arm Limited, 2020

U-Boot Image Builder Manifest
Grant Likely's avatar
Grant Likely committed
=============================
Manifest of git repositories to be used with the U-Boot+TFA build scripts.
It uses the git 'repo' tool to clone a copy of each project and a Makefile
from the `u-boot-tfa-build` project to build for various Arm targets.
See the `https://github.com/glikely/u-boot-tfa-build` repo for more details.

Using this tool
---------------
This tool uses the git 'repo' tool.
Install repo first

To initialize the build environment, create a new working directory
Grant Likely's avatar
Grant Likely committed
and run the repo init command::

  $ mkdir firmware-working
  $ cd firmware-working
  $ repo init -u https://github.com/glikely/u-boot-manifest

This will clone all of the required git trees and link the Makefile
Grant Likely's avatar
Grant Likely committed
into the root directory. To build the firmware, simply type::
  $ make <target_name>_defconfig
Grant Likely's avatar
Grant Likely committed
  $ make

Where <target_name> is a U-Boot defconfig that can be found in the
u-boot/configs directory.