File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 66
77menuconfig SUIT
88 bool "Enable SUIT modules"
9+ depends on !SOC_NRF54H20_IRON
910
1011if SUIT
1112
Original file line number Diff line number Diff 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()
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ menu "SUIT provisioning"
99config 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
1314if SUIT_MPI_GENERATE
1415
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments