From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bin Meng Date: Sun, 20 Dec 2020 21:21:36 +0800 Subject: [PATCH] tools: kconfig: Use scripts/dtc for the MKIMAGE_DTC_PATH Message-ID: <20201220132136.2195-1-bmeng.cn@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Use the dtc executable generated during the U-Boot build process for mkimage. This removes the build dependency on the external dtc. Signed-off-by: Bin Meng --- tools/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Kconfig b/tools/Kconfig index b2f5012240..366a9f5f81 100644 --- a/tools/Kconfig +++ b/tools/Kconfig @@ -2,7 +2,7 @@ menu "Tools options" config MKIMAGE_DTC_PATH string "Path to dtc binary for use within mkimage" - default "dtc" + default "scripts/dtc/dtc" help The mkimage host tool will, in order to generate FIT images make calls to the dtc application in order to create the output. In -- 2.25.1