diff options
author | Ricardo B. Marliere <ricardo@marliere.net> | 2023-10-12 12:54:21 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2023-10-18 10:16:09 +0200 |
commit | 1b6272894f2dfc25374add1dcfa37efc88384ff8 (patch) | |
tree | c77039f4807874ae4c185ce80a98a312100c4f3e /Documentation/kbuild/kbuild.rst | |
parent | UML: remove unused cmd_vdso_install (diff) | |
download | linux-1b6272894f2dfc25374add1dcfa37efc88384ff8.tar.xz linux-1b6272894f2dfc25374add1dcfa37efc88384ff8.zip |
docs: kbuild: add INSTALL_DTBS_PATH
The documentation for kbuild and makefiles is missing an explanation of
a variable important for some architectures.
Signed-off-by: Ricardo B. Marliere <ricardo@marliere.net>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'Documentation/kbuild/kbuild.rst')
-rw-r--r-- | Documentation/kbuild/kbuild.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/kbuild/kbuild.rst b/Documentation/kbuild/kbuild.rst index bd906407e307..9c8d1d046ea5 100644 --- a/Documentation/kbuild/kbuild.rst +++ b/Documentation/kbuild/kbuild.rst @@ -243,6 +243,12 @@ The output directory is often set using "O=..." on the commandline. The value can be overridden in which case the default value is ignored. +INSTALL_DTBS_PATH +----------------- +INSTALL_DTBS_PATH specifies where to install device tree blobs for +relocations required by build roots. This is not defined in the +makefile but the argument can be passed to make if needed. + KBUILD_ABS_SRCTREE -------------------------------------------------- Kbuild uses a relative path to point to the tree when possible. For instance, |