Skip to content

Commit

Permalink
modules: tf-m: disable audit log partition with medium profile
Browse files Browse the repository at this point in the history
When compiling TF-M with profile_medium, disable the support
for Audit Log due to an upstream bug.

Signed-off-by: Ioannis Glaropoulos <[email protected]>
  • Loading branch information
ioannisg committed Mar 26, 2021
1 parent 3a3693c commit 6da3d70
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions modules/trusted-firmware-m/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,11 @@ config TFM_PARTITION_PLATFORM
options are handled by the build system in the trusted-firmware-m
repository.

# Audit Log partition build fails for profile_medium, so disable
# the combination for now.
config TFM_PARTITION_AUDIT_LOG
bool "Enable secure partition 'Audit Log'"
default y
bool "Enable secure partition 'Audit Log'" if (TFM_PROFILE != "profile_medium")
default y if (TFM_PROFILE != "profile_medium")
help
Setting this option will cause '-DTFM_PARTITION_AUDIT_LOG'
to be passed to the TF-M build system. Look at 'config_default.cmake'
Expand Down

0 comments on commit 6da3d70

Please sign in to comment.