Skip to content

sysbuild: Kconfig: remove SUPPORT_SECURE_BOOT_BOOTCONF #22898

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

Open
wants to merge 1 commit 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
5 changes: 0 additions & 5 deletions sysbuild/Kconfig.mcuboot
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,6 @@ choice BOOT_SIGNATURE_TYPE

endchoice

config MCUBOOT_FPROTECT_ALLOW_COMBINED_REGIONS
bool
default y
depends on SOC_SERIES_NRF54LX && !SECURE_BOOT_APPCORE

config BOOT_SIGNATURE_TYPE_PURE
bool "Verify signature directly over image"
depends on SOC_SERIES_NRF54LX
Expand Down
8 changes: 2 additions & 6 deletions sysbuild/Kconfig.secureboot
Original file line number Diff line number Diff line change
Expand Up @@ -339,14 +339,10 @@ config SECURE_BOOT_PUBLIC_KEY_FILES
empty string then only the public key hash corresponding to the private signing key used
to sign the image is included in provision.hex.

config SUPPORT_SECURE_BOOT_BOOTCONF_LOCK_WRITES
bool
depends on !MCUBOOT_FPROTECT_ALLOW_COMBINED_REGIONS
default y if SOC_NRF54L15_CPUAPP || SOC_NRF54L05_CPUAPP || SOC_NRF54L10_CPUAPP

config SECURE_BOOT_BOOTCONF_LOCK_WRITES
bool "Protect bootloader's NVM from writes"
depends on SUPPORT_SECURE_BOOT_BOOTCONF_LOCK_WRITES
depends on SOC_NRF54L15_CPUAPP || SOC_NRF54L05_CPUAPP || SOC_NRF54L10_CPUAPP
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the !MCUBOOT_FPROTECT_ALLOW_COMBINED_REGIONS check is missing, Kconfig is here:

config MCUBOOT_FPROTECT_ALLOW_COMBINED_REGIONS

default y
help
Sets RRAMC's BOOTCONF region protection to disable writes.

Expand Down