We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de05f7a commit 7e7c876Copy full SHA for 7e7c876
subsys/suit/Kconfig
@@ -6,6 +6,7 @@
6
7
menuconfig SUIT
8
bool "Enable SUIT modules"
9
+ depends on !SOC_NRF54H20_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_SOC_NRF54H20_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