summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorHeinrich Schuchardt <[email protected]>2024-07-14 09:18:04 +0200
committerHeinrich Schuchardt <[email protected]>2024-07-19 13:44:12 +0200
commitc72a163e545d3f34d30c0384f1f47aa2de66f08f (patch)
treebe2565670925c84ccd4e285545c29e8c75b1d1ae /README
parent5c1b5e6bc59a047c2ac65b2c22a2b511658b0f15 (diff)
doc: move out-of-tree building info to HTML
Move the information about out-of-tree building from README to the generated HTML documentation. Signed-off-by: Heinrich Schuchardt <[email protected]> Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'README')
-rw-r--r--README20
1 files changed, 0 insertions, 20 deletions
diff --git a/README b/README
index b89768f1791..b76449b70a8 100644
--- a/README
+++ b/README
@@ -1684,26 +1684,6 @@ images ready for download to / installation on your system:
- "u-boot" is an image in ELF binary format
- "u-boot.srec" is in Motorola S-Record format
-By default the build is performed locally and the objects are saved
-in the source directory. One of the two methods can be used to change
-this behavior and build U-Boot to some external directory:
-
-1. Add O= to the make command line invocations:
-
- make O=/tmp/build distclean
- make O=/tmp/build NAME_defconfig
- make O=/tmp/build all
-
-2. Set environment variable KBUILD_OUTPUT to point to the desired location:
-
- export KBUILD_OUTPUT=/tmp/build
- make distclean
- make NAME_defconfig
- make all
-
-Note that the command line "O=" setting overrides the KBUILD_OUTPUT environment
-variable.
-
User specific CPPFLAGS, AFLAGS and CFLAGS can be passed to the compiler by
setting the according environment variables KCPPFLAGS, KAFLAGS and KCFLAGS.
For example to treat all compiler warnings as errors: