-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update nRF9280 SUIT tempaltes to use sysbuild dictionary. Signed-off-by: Tuomas Parttimaa <[email protected]>
- Loading branch information
Showing
10 changed files
with
399 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor ASA | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
include(${CMAKE_CURRENT_LIST_DIR}/suit_utilities.cmake) | ||
|
||
# List all manifest roles. | ||
# The function internally checks if the enabling symbol is defined. | ||
# If role is enabled, the function verifies if all required options are defined. | ||
|
||
generate_mpi_hex(ROOT) | ||
generate_mpi_hex(APP_RECOVERY) | ||
generate_mpi_hex(APP_LOCAL_1) | ||
generate_mpi_hex(APP_LOCAL_2) | ||
generate_mpi_hex(APP_LOCAL_3) | ||
generate_mpi_area( | ||
APP_AREA | ||
ROOT | ||
APP_RECOVERY | ||
APP_LOCAL_1 | ||
APP_LOCAL_2 | ||
APP_LOCAL_3 | ||
) | ||
|
||
generate_mpi_hex(RAD_RECOVERY) | ||
generate_mpi_hex(RAD_LOCAL_1) | ||
generate_mpi_hex(RAD_LOCAL_2) | ||
generate_mpi_area( | ||
RAD_AREA | ||
RAD_RECOVERY | ||
RAD_LOCAL_1 | ||
RAD_LOCAL_2 | ||
) | ||
|
||
if(SB_CONFIG_SUIT_ENVELOPE_OUTPUT_MPI_MERGE) | ||
suit_add_merge_hex_file( | ||
FILES ${MPI_BINARY_DIR}/${SB_CONFIG_SUIT_MPI_APP_AREA_PATH} | ||
DEPENDENCIES ${MPI_BINARY_DIR}/${SB_CONFIG_SUIT_MPI_APP_AREA_PATH} | ||
TARGET "application" | ||
) | ||
suit_add_merge_hex_file( | ||
FILES ${MPI_BINARY_DIR}/${SB_CONFIG_SUIT_MPI_RAD_AREA_PATH} | ||
DEPENDENCIES ${MPI_BINARY_DIR}/${SB_CONFIG_SUIT_MPI_RAD_AREA_PATH} | ||
TARGET "radio" | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.