summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVagrant Cascadian <[email protected]>2026-01-29 20:04:23 -0800
committerTom Rini <[email protected]>2026-02-10 15:55:45 -0600
commitb3087d21f022e29678e396b425e4a78ff7cf0912 (patch)
treeb3e486bbaefc6e8f280d8950cb83542244617c7d
parenteed514b11d04a2f8a949521ad3bffba3ec98bd2f (diff)
env: Provide another work-around for unquoting fdtfile
Some boards use CONFIG_DEFAULT_FDT_FILE to specify the value of fdtfile, althugh the quotes get embedded in the value. Provide DEFAULT_FDT_FILE with the quotes stripped. This is a similar work-around to the one provided in commit d085e692c98d0d7b57cc577ed9befda159cd4a40 for CONFIG_DEFAULT_DEVICE_TREE. Signed-off-by: Vagrant Cascadian <[email protected]> Reviewed-by: Tom Rini <[email protected]>
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 435a4bf372d..75d407a24f5 100644
--- a/Makefile
+++ b/Makefile
@@ -2138,6 +2138,7 @@ quiet_cmd_gen_envp = ENVP $@
-D__ASSEMBLY__ \
-D__UBOOT_CONFIG__ \
-DDEFAULT_DEVICE_TREE=$(subst ",,$(CONFIG_DEFAULT_DEVICE_TREE)) \
+ -DDEFAULT_FDT_FILE=$(subst ",,$(CONFIG_DEFAULT_FDT_FILE)) \
-I . -I include -I $(srctree)/include \
-include linux/kconfig.h -include include/config.h \
-I$(srctree)/arch/$(ARCH)/include \