From: Simon Glass Date: Fri, 11 Sep 2020 02:21:20 +0000 (-0600) Subject: Kconfig: Move DEFAULT_FDT_FILE under boot options X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=832876a46a7a3093ceadb580864c1708bd7210d8;p=u-boot.git Kconfig: Move DEFAULT_FDT_FILE under boot options This relates to booting since it is the default devicetree provided to Linux. Move it under the 'boot options' menu. Signed-off-by: Simon Glass --- diff --git a/common/Kconfig b/common/Kconfig index bd9b574a8d..6423ab3797 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -433,11 +433,6 @@ endif endmenu -config DEFAULT_FDT_FILE - string "Default fdt file" - help - This option is used to set the default fdt file to boot OS. - config MISC_INIT_R bool "Execute Misc Init" default y if ARCH_KEYSTONE || ARCH_SUNXI || MPC85xx diff --git a/common/Kconfig.boot b/common/Kconfig.boot index 1696192e18..4191bfb34d 100644 --- a/common/Kconfig.boot +++ b/common/Kconfig.boot @@ -885,4 +885,9 @@ config PREBOOT help This is the default of "preboot" environment variable. +config DEFAULT_FDT_FILE + string "Default fdt file" + help + This option is used to set the default fdt file to boot OS. + endmenu # Booting