Skip to content

Commit 752f3ed

Browse files
nordicjmlemrey
authored andcommitted
kconfig: Fix missing limit check and add alphabetical ordering
Fixes a check which ensures Kconfigs are only loaded if baremetal is used Signed-off-by: Jamie McCrae <[email protected]>
1 parent 86f5927 commit 752f3ed

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

Kconfig.nrf_bm

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ config NRF_BM
88
bool
99
default y
1010

11+
if NRF_BM
12+
13+
# zephyr-keep-sorted-start
1114
rsource "drivers/Kconfig"
1215
rsource "lib/Kconfig"
1316
rsource "samples/Kconfig"
1417
rsource "subsys/Kconfig"
18+
# zephyr-keep-sorted-stop
19+
20+
endif # NRF_BM

drivers/Kconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
#
66
menu "Device Drivers"
77

8+
# zephyr-keep-sorted-start
89
rsource "console/Kconfig"
10+
# zephyr-keep-sorted-stop
911

1012
endmenu

0 commit comments

Comments
 (0)