-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sysbuild: Add support for sysbuild-assigned MCUboot image IDs
Adds support for MCUboot to assign IDs to which images are which in MCUboot, which applications can also use Signed-off-by: Jamie McCrae <[email protected]>
- Loading branch information
Showing
5 changed files
with
82 additions
and
6 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
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,32 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor ASA | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
menu "MCUboot IDs (informative only, do not change)" | ||
|
||
config MCUBOOT_APPLICATION_IMAGE_NUMBER | ||
int "Application image number (informative only, do not change)" | ||
default -1 | ||
|
||
config MCUBOOT_NETWORK_CORE_IMAGE_NUMBER | ||
int "Netcore core image number (informative only, do not change)" | ||
# depends on SOC_NRF5340_CPUAPP | ||
default -1 | ||
|
||
config MCUBOOT_WIFI_PATCHES_IMAGE_NUMBER | ||
int "WiFi patches image number (informative only, do not change)" | ||
default -1 | ||
|
||
config MCUBOOT_QSPI_XIP_IMAGE_NUMBER | ||
int "QSPI XIP image number (informative only, do not change)" | ||
# depends on SOC_NRF52840 || SOC_NRF5340_CPUAPP || SOC_SERIES_NRF91X | ||
default -1 | ||
|
||
config MCUBOOT_MCUBOOT_IMAGE_NUMBER | ||
int "MCUboot (S0/S1) image number (informative only, do not change)" | ||
# depends on MCUBOOT | ||
default -1 | ||
|
||
endmenu |
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