Skip to content

Commit 3b583c2

Browse files
committed
[nrf fromlist] cmake: add tfm / tfa image information to build info
Support for list of images in build info was added with commit 4061311 and is used by sysbuild. Zephyr itself also uses CMake's External Project feature when including TF-M or TF-A in a Zephyr build. Populate build info with TF-M / TF-A information when said image is included in the build. Upstream PR #: 86881 Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
1 parent eab01fb commit 3b583c2

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

modules/trusted-firmware-a/CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ if (CONFIG_BUILD_WITH_TFA)
88

99
include(ExternalProject)
1010

11+
set(tfa_image_info MAP "name: tfa, source-dir: ${ZEPHYR_TRUSTED_FIRMWARE_A_MODULE_DIR}")
12+
build_info(images VALUE ${tfa_image_info})
13+
1114
ExternalProject_Add(
1215
tfa
1316
SOURCE_DIR ${ZEPHYR_TRUSTED_FIRMWARE_A_MODULE_DIR}

modules/trusted-firmware-m/CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,9 @@ if (CONFIG_BUILD_WITH_TFM)
296296
# threads. Which is num_cores+2 on Ninja and MAKEFLAGS with Make.
297297
endif()
298298

299+
set(tfm_image_info MAP "name: tfm, source-dir: ${ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR}")
300+
build_info(images VALUE ${tfm_image_info})
301+
299302
ExternalProject_Add(
300303
tfm
301304
SOURCE_DIR ${ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR}

0 commit comments

Comments
 (0)