File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ config SOFTDEVICE_QOS_CHANNEL_SURVEY_REPORT
24
24
if SOFTDEVICE
25
25
26
26
config SOFTDEVICE_S115
27
- bool
27
+ bool "s115 SoftDevice"
28
28
depends on SOC_SERIES_NRF54LX
29
29
select SOFTDEVICE_PERIPHERAL
30
30
select SOFTDEVICE_DATA_LENGTH_UPDATE
Original file line number Diff line number Diff line change @@ -165,6 +165,25 @@ function(${SYSBUILD_CURRENT_MODULE_NAME}_pre_cmake)
165
165
endif ()
166
166
endif ()
167
167
endforeach ()
168
+
169
+ if (SB_CONFIG_SOFTDEVICE_NONE )
170
+ set_config_bool (${DEFAULT_IMAGE} CONFIG_SOFTDEVICE n )
171
+
172
+ if (NOT DEFINED SB_CONFIG_BM_FIRMWARE_LOADER_NONE )
173
+ set_config_bool (${SB_CONFIG_BM_FIRMWARE_LOADER_IMAGE_NAME} CONFIG_SOFTDEVICE n )
174
+ endif ()
175
+ else ()
176
+ foreach (option SOFTDEVICE_S115 )
177
+ if (SB_CONFIG_${option} )
178
+ set_config_bool (${DEFAULT_IMAGE} CONFIG_${option} y )
179
+
180
+ if (NOT DEFINED SB_CONFIG_BM_FIRMWARE_LOADER_NONE AND NOT DEFINED SB_CONFIG_BM_FIRMWARE_LOADER_UART_MCUMGR )
181
+ set_config_bool (${SB_CONFIG_BM_FIRMWARE_LOADER_IMAGE_NAME} CONFIG_${option} y )
182
+ endif ()
183
+ break ()
184
+ endif ()
185
+ endforeach ()
186
+ endif ()
168
187
endfunction ()
169
188
170
189
function (${SYSBUILD_CURRENT_MODULE_NAME} _post_cmake )
You can’t perform that action at this time.
0 commit comments