diff options
author | Tom Rini <trini@konsulko.com> | 2017-09-23 12:52:44 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-09-23 17:33:03 -0400 |
commit | c0e032e0090d6541549b19cc47e06ccd1f302893 (patch) | |
tree | 3df07c2a174f118fb478ba05c8efe5ab9cf27577 /scripts/Kbuild.include | |
parent | 0929863aff433d1e87ad6cd03d72f2909fa25573 (diff) |
scripts/dtc: Update to upstream version v1.4.3
Using the update-dtc-source.sh script from Linux v4.14-rc1 import the
portions of dtc that we require. We bring in update-dtc-source.sh and
scripts/dtc/Makefile from Linux v4.14-rc1. Rework DTC_FLAGS handling to
not require a test.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'scripts/Kbuild.include')
-rw-r--r-- | scripts/Kbuild.include | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index a3a5c59d0d..2c7918ad37 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include @@ -172,11 +172,6 @@ ld-version = $(shell $(LD) --version | $(srctree)/scripts/ld-version.sh) # Usage: $(call ld-ifversion, -ge, 22252, y) ld-ifversion = $(shell [ $(ld-version) $(1) $(2) ] && echo $(3) || echo $(4)) -# dtc-option -# Usage: DTC_FLAGS += $(call dtc-option,-Wno-unit_address_vs_reg) -dtc-option = $(call try-run,\ - echo '/dts-v1/; / {};' | $(DTC) $(1),$(1),$(2)) - ###### ### |