[U-Boot] [PATCH 2/2] kconfig: Adjust ordering so that defaults work as expected

Simon Glass sjg at chromium.org
Thu Feb 19 15:08:34 CET 2015


At present defaults in arch-specific Kconfig files are ignored if the
top-level item comes ahead of it in include order. This means that it is
not possible to have a U-Boot default that architectures and boards can
override. This does not seem very useful.

Move the include earlier to support this.

Signed-off-by: Simon Glass <sjg at chromium.org>
Reported-by: Masahiro Yamada <yamada.m at jp.panasonic.com>
---

 Kconfig | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Kconfig b/Kconfig
index aa35ac9..e6ed593 100644
--- a/Kconfig
+++ b/Kconfig
@@ -12,6 +12,9 @@ config KCONFIG_OBJDIR
 	string
 	option env="KCONFIG_OBJDIR"
 
+# Allow defaults in arch-specific code to override any given here
+source "arch/Kconfig"
+
 menu "General setup"
 
 config LOCALVERSION
@@ -172,8 +175,6 @@ config SYS_CLK_FREQ
 
 endmenu		# Boot images
 
-source "arch/Kconfig"
-
 source "common/Kconfig"
 
 source "dts/Kconfig"
-- 
2.2.0.rc0.207.ga3a616c



More information about the U-Boot mailing list