From: Simon Glass Date: Sat, 20 Jul 2024 10:49:50 +0000 (+0100) Subject: Makefile: Pass OF_SPL_REMOVE_PROPS to binman X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=20e5399a311eb3aca5cebfd3e494047ed1ceacb8;p=u-boot.git Makefile: Pass OF_SPL_REMOVE_PROPS to binman Pass CONFIG_OF_SPL_REMOVE_PROPS to binman so that it can remove properties correctly when producing FITs for SPL phases. Signed-off-by: Simon Glass --- diff --git a/Makefile b/Makefile index 6738b8608f..ea562c2c9c 100644 --- a/Makefile +++ b/Makefile @@ -1393,6 +1393,7 @@ cmd_binman = $(srctree)/tools/binman/binman $(if $(BINMAN_DEBUG),-D) \ -a tpl-dtb=$(CONFIG_TPL_OF_REAL) \ -a vpl-dtb=$(CONFIG_VPL_OF_REAL) \ -a pre-load-key-path=${PRE_LOAD_KEY_PATH} \ + -a of-spl-remove-props=$(CONFIG_OF_SPL_REMOVE_PROPS) \ $(BINMAN_$(@F)) OBJCOPYFLAGS_u-boot.ldr.hex := -I binary -O ihex diff --git a/tools/binman/etype/fit.py b/tools/binman/etype/fit.py index 38358292ec..ee44e5a1cd 100644 --- a/tools/binman/etype/fit.py +++ b/tools/binman/etype/fit.py @@ -210,7 +210,8 @@ class Entry_fit(Entry_section): Note that the `of-spl-remove-props` entryarg can be used to indicate additional properties to remove. It is often used to remove properties like - `clock-names` and `pinctrl-names` which are not needed in SPL builds. + `clock-names` and `pinctrl-names` which are not needed in SPL builds. This + value is automatically passed to binman by the U-Boot build. See :ref:`fdtgrep_filter` for more information.