summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSumit Garg <[email protected]>2024-02-22 15:06:00 +0530
committerTom Rini <[email protected]>2024-02-29 22:24:05 -0500
commit3a4e5944c96c0d4a421132096f88d972569cb307 (patch)
tree2fa484908131d905de9ce35f319d4342185db2c9 /Makefile
parentdf6fb77c98aaad373bb9851aeb39dd792b8dbffe (diff)
Makefile: Allow upstream DT subtree to provide DT includes
Allow platforms to reuse DT headers and dtsi includes directly form upstream DT subtree which will be frequently synced with Linux kernel. This will further allow us to drop corresponding DT includes copy from U-Boot tree. Also, since the DT includes from upstream DT subtree are done after DT includes from U-Boot tree, so it shouldn't cause any conflicts. Tested-by: Bryan Brattlof <[email protected]> Signed-off-by: Sumit Garg <[email protected]>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 283ddd2a16f..2643d1839b6 100644
--- a/Makefile
+++ b/Makefile
@@ -835,7 +835,8 @@ UBOOTINCLUDE := \
-I$(srctree)/arch/arm/thumb1/include), \
-I$(srctree)/arch/arm/thumb1/include)) \
-I$(srctree)/arch/$(ARCH)/include \
- -include $(srctree)/include/linux/kconfig.h
+ -include $(srctree)/include/linux/kconfig.h \
+ -I$(srctree)/dts/upstream/include
NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)