kconfig: Move Kconfig.dts sourcing earlier
Move Kconfig.dts before modules so that any of the auto generated symbols will be available to module Kconfigs. Signed-off-by: Kumar Gala <galak@kernel.org>
This commit is contained in:
parent
71b4dcf269
commit
52a3ec9df3
1 changed files with 4 additions and 1 deletions
|
@ -28,6 +28,10 @@ osource "soc/$(ARCH)/*/Kconfig.defconfig"
|
|||
# This loads the toolchain defconfigs
|
||||
osource "$(TOOLCHAIN_KCONFIG_DIR)/Kconfig.defconfig"
|
||||
|
||||
# This should be early since the autogen Kconfig.dts symbols may get
|
||||
# used by modules
|
||||
source "dts/Kconfig"
|
||||
|
||||
menu "Modules"
|
||||
|
||||
source "modules/Kconfig"
|
||||
|
@ -38,7 +42,6 @@ source "boards/Kconfig"
|
|||
source "soc/Kconfig"
|
||||
source "arch/Kconfig"
|
||||
source "kernel/Kconfig"
|
||||
source "dts/Kconfig"
|
||||
source "drivers/Kconfig"
|
||||
source "lib/Kconfig"
|
||||
source "subsys/Kconfig"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue