https://github.com/glikely/u-boot-manifest
https://github.com/glikely/u-boot-manifest
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/glikely/u-boot-manifest
- Owner: glikely
- Created: 2020-08-13T10:18:54.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-01T11:56:43.000Z (over 5 years ago)
- Last Synced: 2025-10-10T23:47:48.682Z (8 months ago)
- Size: 51.8 KB
- Stars: 0
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
.. SPDX-License-Identifier: GPL-2.0+
.. Copyright (C) Arm Limited, 2020
U-Boot Image Builder Manifest
=============================
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
and run the repo init command::
$ mkdir firmware-working
$ cd firmware-working
$ repo init -u https://github.com/glikely/u-boot-manifest
$ repo sync
This will clone all of the required git trees and link the Makefile
into the root directory. To build the firmware, simply type::
$ make _defconfig
$ make
Where is a U-Boot defconfig that can be found in the
u-boot/configs directory.