From 3ced42c5e5272d15fa9bba1dd57614ee0fbc5de4 Mon Sep 17 00:00:00 2001 From: Tomi Fontanilles Date: Wed, 24 Sep 2025 13:58:22 +0300 Subject: [PATCH] secure_storage: remove experimental status The subsystem has been out for a year. It has been taken into use by various parties and has gone through additional downstream testing. It is considered stable and mature enough to not be experimental anymore. Signed-off-by: Tomi Fontanilles --- doc/releases/release-notes-4.3.rst | 4 ++++ subsys/secure_storage/Kconfig | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/releases/release-notes-4.3.rst b/doc/releases/release-notes-4.3.rst index 5b103a3b5de..2e157b25d62 100644 --- a/doc/releases/release-notes-4.3.rst +++ b/doc/releases/release-notes-4.3.rst @@ -291,6 +291,10 @@ Libraries / Subsystems via :kconfig:option:`CONFIG_LOG_RATELIMIT_FALLBACK` to either log all messages or drop them completely. For more details, see :ref:`logging_ratelimited`. +* Secure storage + + * The experimental status has been removed. (:github:`96483`) + Other notable changes ********************* diff --git a/subsys/secure_storage/Kconfig b/subsys/secure_storage/Kconfig index b0ac8c08a14..307cba86662 100644 --- a/subsys/secure_storage/Kconfig +++ b/subsys/secure_storage/Kconfig @@ -5,7 +5,6 @@ menuconfig SECURE_STORAGE bool "Secure storage subsystem" depends on !BUILD_WITH_TFM select MBEDTLS_PSA_CRYPTO_STORAGE_C if MBEDTLS_PSA_CRYPTO_C - select EXPERIMENTAL help The secure storage subsystem provides an implementation of the PSA Secure Storage API functions on board targets that don't already have one.