Skip to content

Commit 9acb643

Browse files
lemreygalak
authored andcommitted
kconfig: move Zephyr modules Kconfig entries to the top
Zephyr modules' Kconfig entries appear in a seemingly random spot in menuconfig. This patch moves those entries at the top of the menu, to improve their visibility and make their location predictable. Signed-off-by: Emanuele Di Santo <[email protected]>
1 parent 193d6c6 commit 9acb643

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Kconfig.zephyr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
# SPDX-License-Identifier: Apache-2.0
88
#
99

10+
source "$(PROJECT_BINARY_DIR)/Kconfig.modules"
11+
1012
# Include these first so that any properties (e.g. defaults) below can be
1113
# overriden in *.defconfig files (by defining symbols in multiple locations).
1214
# After merging all the symbol definitions, Kconfig picks the first property
@@ -38,8 +40,6 @@ source "subsys/Kconfig"
3840

3941
source "ext/Kconfig"
4042

41-
source "$(PROJECT_BINARY_DIR)/Kconfig.modules"
42-
4343
menu "Build and Link Features"
4444

4545
menu "Linker Options"

0 commit comments

Comments
 (0)