diff options
author | Tom Rini <trini@konsulko.com> | 2017-09-23 13:00:57 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-09-24 07:32:24 -0400 |
commit | 36dd5f1b8abcd0aa5f8490b3ef1e4e7ecce2eb8c (patch) | |
tree | efe39b1793fbf439cd6718bf86dfd6b7a68a8c85 /scripts | |
parent | 2d4c2259930b91fe5e7a2f92db32c03fe640ed60 (diff) | |
download | u-boot-36dd5f1b8abcd0aa5f8490b3ef1e4e7ecce2eb8c.tar.gz u-boot-36dd5f1b8abcd0aa5f8490b3ef1e4e7ecce2eb8c.tar.xz u-boot-36dd5f1b8abcd0aa5f8490b3ef1e4e7ecce2eb8c.zip |
dtc: Switch to building and using our own dtc unless provided
This makes us act like the Linux Kernel does and allow for dtc to be
provided externally but otherwise we use the version of dtc that is
included in the sources. This in turn means that we can drop the
checkdtc logic. We select DTC in the cases where we will need the dtc
tool provided.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/Makefile b/scripts/Makefile index 3e10c16d59..9d55241463 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -21,3 +21,4 @@ build_docproc: $(obj)/docproc # Let clean descend into subdirs subdir- += basic kconfig +subdir-$(CONFIG_DTC) += dtc |