Skip to content

Commit adee8f0

Browse files
hakonfamrlubos
authored andcommitted
cmake: config: disable SUIT for iron board variant
This is compatible with the Nordic IRONside SE for nRF54H20. Ref: NCSDK-NONE Signed-off-by: Håkon Amundsen <[email protected]>
1 parent a136216 commit adee8f0

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

subsys/suit/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
menuconfig SUIT
88
bool "Enable SUIT modules"
9+
depends on !SOC_NRF54H20_IRON
910

1011
if SUIT
1112

sysbuild/CMakeLists.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -719,8 +719,10 @@ function(${SYSBUILD_CURRENT_MODULE_NAME}_post_cmake)
719719
endif()
720720

721721
include_packaging()
722-
include_suit_provisioning()
723-
include_suit()
722+
if(NOT SB_CONFIG_SOC_NRF54H20_IRON)
723+
include_suit_provisioning()
724+
include_suit()
725+
endif()
724726

725727
if(SB_CONFIG_SECURE_BOOT OR SB_CONFIG_MCUBOOT_HARDWARE_DOWNGRADE_PREVENTION)
726728
include_provision_hex()

sysbuild/Kconfig.suit_provisioning

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ menu "SUIT provisioning"
99
config SUIT_MPI_GENERATE
1010
bool "Generate SUIT Manifest Provisioning Information binary"
1111
default y if SOC_SERIES_NRF54HX || SOC_SERIES_NRF92X
12+
depends on !SOC_NRF54H20_IRON
1213

1314
if SUIT_MPI_GENERATE
1415

west.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ manifest:
6565
# https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/modules.html
6666
- name: zephyr
6767
repo-path: sdk-zephyr
68-
revision: pull/2643/head
68+
revision: 99bbeff21583f245dab9e56afe73c488d93e271f
6969
import:
7070
# In addition to the zephyr repository itself, NCS also
7171
# imports the contents of zephyr/west.yml at the above

0 commit comments

Comments
 (0)