diff options
author | Tom Rini <trini@konsulko.com> | 2017-09-15 13:15:25 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-09-22 07:40:05 -0400 |
commit | 2fa73e784da105419b7d9d07d8f9d4a79afe531a (patch) | |
tree | 1eced6b9b943f5ba9a2a8e0b19b16ef697b4c3d9 /Makefile | |
parent | 933f67aa56ea742f014b21bfe50a16a00e97b9bd (diff) | |
download | u-boot-2fa73e784da105419b7d9d07d8f9d4a79afe531a.zip u-boot-2fa73e784da105419b7d9d07d8f9d4a79afe531a.tar.gz u-boot-2fa73e784da105419b7d9d07d8f9d4a79afe531a.tar.bz2 |
Makefile: Update minimum dtc version to 1.4.3
With support for overlays and calling the -@ flag to dtc we need to have
at least 1.4.3 available now.
Cc: Simon Glass <sjg@chromium.org>
Reported-by: Stephen Warren <swarren@wwwdotorg.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1448,8 +1448,8 @@ System.map: u-boot @$(call SYSTEM_MAP,$<) > $@ checkdtc: - @if test $(call dtc-version) -lt 0104; then \ - echo '*** Your dtc is too old, please upgrade to dtc 1.4 or newer'; \ + @if test $(call dtc-version) -lt 010403; then \ + echo '*** Your dtc is too old, please upgrade to dtc 1.4.3 or newer'; \ false; \ fi |