diff options
| author | Simon Glass <[email protected]> | 2016-11-25 20:15:58 -0700 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2016-12-20 08:09:55 +1300 |
| commit | b116aff27c56dbc9132d847f7134eb7e4cc26aa3 (patch) | |
| tree | 83b7e62de610494ecae799f9c9c16ca86ddcdd01 /scripts/Makefile.lib | |
| parent | 17a944b671e39efe6743da43a73aba020af6efce (diff) | |
binman: Allow configuration options to be used in .dts files
It is sometimes useful to be able to reference configuration options in a
device tree source file. Add the necessary includes so that this works.
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Tested-by: Bin Meng <[email protected]>
Diffstat (limited to 'scripts/Makefile.lib')
| -rw-r--r-- | scripts/Makefile.lib | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 956a8a9b044..a237b7bf859 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -168,6 +168,11 @@ ld_flags = $(LDFLAGS) $(ldflags-y) dtc_cpp_flags = -Wp,-MD,$(depfile).pre.tmp -nostdinc \ -I$(srctree)/arch/$(ARCH)/dts \ -I$(srctree)/arch/$(ARCH)/dts/include \ + -Iinclude \ + -I$(srctree)/include \ + -I$(srctree)/arch/$(ARCH)/include \ + -include $(srctree)/include/linux/kconfig.h \ + -D__ASSEMBLY__ \ -undef -D__DTS__ # Finds the multi-part object the current object will be linked into |
