Skip to content
Merged
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
2 changes: 2 additions & 0 deletions boot/bootutil/src/ed25519_psa.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ int exec_revoke(void)
}
#endif /* CONFIG_BOOT_KMU_KEYS_REVOCATION */

#if defined(CONFIG_BOOT_SIGNATURE_USING_KMU)
void nrf_crypto_keys_housekeeping(void)
Copy link
Contributor

Choose a reason for hiding this comment

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

Wait. Is there a code that prevents us from calling nrf_crypto_keys_housekeeping?

Copy link
Contributor Author

@ahasztag ahasztag Oct 31, 2025

Choose a reason for hiding this comment

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

You do not need to worry in this matter, see:

#define nrf_crypto_keys_housekeeping() do {} while (0)

nrf_crypto_keys_housekeeping will be defined as do {} while(0); if CONFIG_BOOT_SIGNATURE_USING_KMU is not set

{
psa_status_t status;
Expand All @@ -212,5 +213,6 @@ void nrf_crypto_keys_housekeeping(void)
key_ids[i], i, status);
}
}
#endif

#endif