We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a97548b commit 2c8cbc6Copy full SHA for 2c8cbc6
subsys/suit/Kconfig
@@ -6,6 +6,7 @@
6
7
menuconfig SUIT
8
bool "Enable SUIT modules"
9
+ depends on !NRF_IRON
10
11
if SUIT
12
sysbuild/CMakeLists.txt
@@ -719,8 +719,10 @@ function(${SYSBUILD_CURRENT_MODULE_NAME}_post_cmake)
719
endif()
720
721
include_packaging()
722
- include_suit_provisioning()
723
- include_suit()
+ if(NOT SB_CONFIG_NRF_IRON)
+ include_suit_provisioning()
724
+ include_suit()
725
+ endif()
726
727
if(SB_CONFIG_SECURE_BOOT OR SB_CONFIG_MCUBOOT_HARDWARE_DOWNGRADE_PREVENTION)
728
include_provision_hex()
0 commit comments