| Age | Commit message (Collapse) | Author |
|
Packages python3-filelock python3-pytest-xdist as required to run
'make tests'. Add them to the required packages list in the documentation.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
|
|
LTO (Link-Time Optimisation) is an very useful feature which can
significantly reduce the size of U-Boot binaries. So far it has been
made available for selected ARM boards and sandbox.
However, incremental builds are much slower when LTO is used. For example,
an incremental build of sandbox takes 2.1 seconds on my machine, but 6.7
seconds with LTO enabled.
Add a NO_LTO parameter to the build, similar to NO_SDL, so it can be
disabled during development if needed, for faster builds.
Add some documentation about LTO while we are here.
Signed-off-by: Simon Glass <[email protected]>
|
|
Building mkeficapsule requires include uuid/uuid.h
Signed-off-by: Heinrich Schuchardt <[email protected]>
|
|
The following Python packages are used by U-Boot, too:
* python3-asteval
* python3-subunit
* python3-testtools
Signed-off-by: Heinrich Schuchardt <[email protected]>
|
|
mkeficapsule requires package libgnutls28-dev for building
Signed-off-by: Heinrich Schuchardt <[email protected]>
|
|
Signed-off-by: Heinrich Schuchardt <[email protected]>
|
|
Describe the required packages for building U-Boot on Alpine Linux
Signed-off-by: Heinrich Schuchardt <[email protected]>
|
|
tools/binman/control.py imports Python package pkg_resources.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
|
|
At present U-Boot always builds dtc if CONFIG_OF_CONTROL is defined, even
when DTC is provided. The built dtc is not actually used, so this is a
waste of time.
Update the Makefile logic to build dtc only if one is not provided to the
build with the DTC variable. Add documentation to explain this.
This saves about 3.5 seconds of elapsed time on a clean build of
sandbox_spl for me.
Signed-off-by: Simon Glass <[email protected]>
|
|
tools/Makefile uses pkg-config.
Signed-off-by: Heinrich Schuchardt <[email protected]>
|
|
'make htmldocs' requires graphviz and imagemagick (at least with Sphinx
3.5.4).
Signed-off-by: Heinrich Schuchardt <[email protected]>
|
|
These are out of date. Update them and point to the existing build
instructions to avoid duplication. Add a few that are missing.
Signed-off-by: Simon Glass <[email protected]>
|
|
Integrate the Dockerfile from
https://source.denx.de/u-boot/gitlab-ci-runner.git as of
commit bc6130d572f1 ("Dockerfile: Remove high UID/GID") and introduce a
short rST on how to build the container.
Cc: Heinrich Schuchardt <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
|
|
The U-Boot source moves to https://source.denx.de/u-boot/u-boot.git
effective 2021-02-28.
Signed-off-by: Heinrich Schuchardt <[email protected]>
|
|
Describe the packages required to build U-Boot on SUSE.
Signed-off-by: Heinrich Schuchardt <[email protected]>
|
|
The install command is missing for an apt-get command.
Signed-off-by: Heinrich Schuchardt <[email protected]>
|
|
Provide a description of the U-Boot build process with GCC in the HTML
documentation.
Signed-off-by: Heinrich Schuchardt <[email protected]>
|
|
Add a chapter to the HTML documentation describing how to retrieve the
U-Boot sources.
Signed-off-by: Heinrich Schuchardt <[email protected]>
|
|
* Move README.clang to doc/build/clang.rst and reformat as
reStructeredText.
* Indicate that -ffixed-r9 and -ffixed-x18 are used to reserve registers
for gd.
* Minor editing.
Signed-off-by: Heinrich Schuchardt <[email protected]>
|
|
This adds a reST document for how to build U-Boot host tools,
including information for both Linux and Windows.
Signed-off-by: Bin Meng <[email protected]>
|