From 36dd5f1b8abcd0aa5f8490b3ef1e4e7ecce2eb8c Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Sat, 23 Sep 2017 13:00:57 -0400 Subject: 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 --- dts/Kconfig | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'dts') diff --git a/dts/Kconfig b/dts/Kconfig index b4b7ddc144..44fc9fe36d 100644 --- a/dts/Kconfig +++ b/dts/Kconfig @@ -5,11 +5,15 @@ config SUPPORT_OF_CONTROL bool +config DTC + bool + menu "Device Tree Control" depends on SUPPORT_OF_CONTROL config OF_CONTROL bool "Run-time configuration via Device Tree" + select DTC help This feature provides for run-time configuration of U-Boot via a flattened device tree. -- cgit v1.2.3