Skip to content

Commit 7e7c876

Browse files
committed
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 <haakon.amundsen@nordicsemi.no>
1 parent de05f7a commit 7e7c876

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

subsys/suit/Kconfig

+1
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

+4-2
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()

0 commit comments

Comments
 (0)