]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
kconfig: Adjust ordering so that defaults work as expected
authorSimon Glass <sjg@chromium.org>
Tue, 24 Feb 2015 13:26:19 +0000 (22:26 +0900)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 1 Sep 2015 11:56:52 +0000 (13:56 +0200)
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@chromium.org>
Reported-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Reviewed-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Kconfig

diff --git a/Kconfig b/Kconfig
index 2c87fcef8d799e2f83c7f5c9e813ebb7414ff22c..85e8fa7309696ecb2e69c732c1afe85ee6597d3d 100644 (file)
--- 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
@@ -171,8 +174,6 @@ config SYS_CLK_FREQ
 
 endmenu                # Boot images
 
-source "arch/Kconfig"
-
 source "common/Kconfig"
 
 source "disk/Kconfig"