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>
This commit is contained in:
Tom Rini 2017-09-23 12:52:44 -04:00
parent 0929863aff
commit c0e032e009
35 changed files with 15100 additions and 13 deletions

View file

@ -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))
######
###