From: Simon Glass Date: Tue, 24 Feb 2015 13:26:19 +0000 (+0900) Subject: kconfig: Adjust ordering so that defaults work as expected X-Git-Tag: KARO-TXSD-2017-03-15~5317 X-Git-Url: https://git.kernelconcepts.de/?a=commitdiff_plain;h=66afaef22889e2685aa500c047b66ac003eea264;hp=6d4d05b1e9e411c90934e78bae76263f07881186;p=karo-tx-uboot.git kconfig: Adjust ordering so that defaults work as expected 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 Reported-by: Masahiro Yamada Reviewed-by: Masahiro Yamada --- diff --git a/Kconfig b/Kconfig index 75bab7f6cc..823f1e2b21 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"