Skip to content

Commit c9bf37b

Browse files
jaz1-nordicmasz-nordic
authored andcommitted
sysbuild: sdp: Use Kconfig to specify FLPR image path
Specifying the FLPR image path in Kconfig makes it easier to select the SDP FLPR core image and allows the use of external SDP images. Signed-off-by: Jakub Zymelka <jakub.zymelka@nordicsemi.no>
1 parent b91a4cf commit c9bf37b

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

sysbuild/Kconfig.sdp

+7
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ endchoice
3939

4040
endif # SDP_GPIO
4141

42+
config SDP_IMAGE_PATH
43+
string
44+
default "${ZEPHYR_NRF_MODULE_DIR}/applications/sdp/gpio" if SDP_GPIO
45+
default "${ZEPHYR_NRF_MODULE_DIR}/applications/sdp/mspi" if SDP_MSPI
46+
help
47+
Source directory of SDP image.
48+
4249
endif # SDP
4350

4451
endmenu

sysbuild/sdp.cmake

+1-11
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,12 @@ if(SB_CONFIG_SDP)
99
set(board_target_flpr "${BOARD}/${target_soc}/cpuflpr")
1010
set(target_soc)
1111

12-
# Select the SDP application
13-
if(SB_CONFIG_SDP_GPIO)
14-
set(sdp_app_dir "${ZEPHYR_NRF_MODULE_DIR}/applications/sdp/gpio")
15-
elseif(SB_CONFIG_SDP_MSPI)
16-
set(sdp_app_dir "${ZEPHYR_NRF_MODULE_DIR}/applications/sdp/mspi")
17-
else()
18-
message(FATAL_ERROR "Unknown SDP application type")
19-
endif()
20-
2112
# Include the SDP application in the build
2213
ExternalZephyrProject_Add(
2314
APPLICATION sdp
24-
SOURCE_DIR ${sdp_app_dir}
15+
SOURCE_DIR ${SB_CONFIG_SDP_IMAGE_PATH}
2516
BOARD ${board_target_flpr}
2617
BOARD_REVISION ${BOARD_REVISION}
2718
)
28-
set(sdp_app_dir)
2919
set(board_target_flpr)
3020
endif()

0 commit comments

Comments
 (0)