Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

iron board variant #21037

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions subsys/suit/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

menuconfig SUIT
bool "Enable SUIT modules"
depends on !SOC_NRF54H20_IRON

if SUIT

Expand Down
6 changes: 4 additions & 2 deletions sysbuild/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -719,8 +719,10 @@ function(${SYSBUILD_CURRENT_MODULE_NAME}_post_cmake)
endif()

include_packaging()
include_suit_provisioning()
include_suit()
if(NOT SB_CONFIG_SOC_NRF54H20_IRON)
include_suit_provisioning()
include_suit()
endif()

if(SB_CONFIG_SECURE_BOOT OR SB_CONFIG_MCUBOOT_HARDWARE_DOWNGRADE_PREVENTION)
include_provision_hex()
Expand Down
1 change: 1 addition & 0 deletions sysbuild/Kconfig.suit_provisioning
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ menu "SUIT provisioning"
config SUIT_MPI_GENERATE
bool "Generate SUIT Manifest Provisioning Information binary"
default y if SOC_SERIES_NRF54HX || SOC_SERIES_NRF92X
depends on !SOC_NRF54H20_IRON

if SUIT_MPI_GENERATE

Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ manifest:
# https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/modules.html
- name: zephyr
repo-path: sdk-zephyr
revision: db413b6428b12346eaae230e3579f1cc8337bf43
revision: pull/2643/head
import:
# In addition to the zephyr repository itself, NCS also
# imports the contents of zephyr/west.yml at the above
Expand Down
Loading