]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ti-u-boot/ti-u-boot.git/commitdiff
Kconfig: Create a new tools menu
authorSimon Glass <sjg@chromium.org>
Fri, 11 Sep 2020 02:21:27 +0000 (20:21 -0600)
committerTom Rini <trini@konsulko.com>
Fri, 9 Oct 2020 16:02:26 +0000 (12:02 -0400)
At present MKIMAGE_DTC_PATH is in the devicetree menu but not within
'devicetree control' since it does not relate to that. As a result it
shows up in the top menu.

It actually relates to the mkimage tool, so create a new tools menu for it
and move it there.

Signed-off-by: Simon Glass <sjg@chromium.org>
Kconfig
dts/Kconfig
tools/Kconfig [new file with mode: 0644]

diff --git a/Kconfig b/Kconfig
index c385535a5cfe55fc8092eb54c8b7de59ba2bfd67..520679f57e668cb221ada587bba86fe25930550f 100644 (file)
--- a/Kconfig
+++ b/Kconfig
@@ -453,3 +453,5 @@ source "fs/Kconfig"
 source "lib/Kconfig"
 
 source "test/Kconfig"
+
+source "tools/Kconfig"
index 046a54a17366fc3b194b1941092f1ac353b659c7..86ea8ce887514bf9a2e8e4b18d9a4f4dc508f152 100644 (file)
@@ -377,12 +377,3 @@ config TPL_OF_PLATDATA
          declarations for each node. See of-plat.txt for more information.
 
 endmenu
-
-config MKIMAGE_DTC_PATH
-       string "Path to dtc binary for use within mkimage"
-       default "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
-         some cases the system dtc may not support all required features
-         and the path to a different version should be given here.
diff --git a/tools/Kconfig b/tools/Kconfig
new file mode 100644 (file)
index 0000000..b2f5012
--- /dev/null
@@ -0,0 +1,12 @@
+menu "Tools options"
+
+config MKIMAGE_DTC_PATH
+       string "Path to dtc binary for use within mkimage"
+       default "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
+         some cases the system dtc may not support all required features
+         and the path to a different version should be given here.
+
+endmenu