diff options
author | Ricardo B. Marliere <ricardo@marliere.net> | 2023-10-12 07:54:21 -0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2023-10-18 17:16:09 +0900 |
commit | 1b6272894f2dfc25374add1dcfa37efc88384ff8 (patch) | |
tree | c77039f4807874ae4c185ce80a98a312100c4f3e /Documentation/kbuild/makefiles.rst | |
parent | 7aef8f76d1f944288eafda1a9eb285fa18383121 (diff) | |
download | lwn-1b6272894f2dfc25374add1dcfa37efc88384ff8.tar.gz lwn-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/makefiles.rst')
-rw-r--r-- | Documentation/kbuild/makefiles.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/kbuild/makefiles.rst b/Documentation/kbuild/makefiles.rst index e67eb261c9b0..d88d4f0f4f89 100644 --- a/Documentation/kbuild/makefiles.rst +++ b/Documentation/kbuild/makefiles.rst @@ -1623,6 +1623,13 @@ INSTALL_MOD_STRIP INSTALL_MOD_STRIP value will be used as the option(s) to the strip command. +INSTALL_DTBS_PATH + This variable specifies a prefix for relocations required by build + roots. It defines a place for installing the device tree blobs. Like + INSTALL_MOD_PATH, it isn't defined in the Makefile, but can be passed + by the user if desired. Otherwise it defaults to the kernel install + path. + Makefile language ================= |