2019-09-23 10:10:57 -04:00
|
|
|
menu "NVS"
|
2018-07-02 07:10:43 -04:00
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
config NVS_ENCRYPTION
|
|
|
|
bool "Enable NVS encryption"
|
2023-04-05 08:33:56 -04:00
|
|
|
depends on SECURE_FLASH_ENC_ENABLED || SOC_HMAC_SUPPORTED
|
|
|
|
default y if SECURE_FLASH_ENC_ENABLED
|
2019-01-25 11:10:53 -05:00
|
|
|
help
|
2023-05-14 23:04:22 -04:00
|
|
|
This option enables encryption for NVS. When enabled, XTS-AES is used to encrypt
|
2019-01-25 11:10:53 -05:00
|
|
|
the complete NVS data, except the page headers. It requires XTS encryption keys
|
2023-04-05 08:33:56 -04:00
|
|
|
to be stored in an encrypted partition (enabling flash encryption is mandatory here)
|
|
|
|
or to be derived from an HMAC key burnt in eFuse.
|
2021-11-11 01:46:24 -05:00
|
|
|
|
|
|
|
config NVS_COMPATIBLE_PRE_V4_3_ENCRYPTION_FLAG
|
|
|
|
bool "NVS partition encrypted flag compatible with ESP-IDF before v4.3"
|
|
|
|
depends on SECURE_FLASH_ENC_ENABLED
|
|
|
|
help
|
|
|
|
Enabling this will ignore "encrypted" flag for NVS partitions. NVS encryption
|
|
|
|
scheme is different than hardware flash encryption and hence it is not recommended
|
|
|
|
to have "encrypted" flag for NVS partitions. This was not being checked in pre v4.3
|
|
|
|
IDF. Hence, if you have any devices where this flag is kept enabled in partition
|
|
|
|
table then enabling this config will allow to have same behavior as pre v4.3 IDF.
|
|
|
|
|
2022-04-08 09:06:30 -04:00
|
|
|
config NVS_ASSERT_ERROR_CHECK
|
|
|
|
bool "Use assertions for error checking"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
This option switches error checking type between assertions (y) or return codes (n).
|
2023-08-25 11:15:18 -04:00
|
|
|
|
|
|
|
config NVS_LEGACY_DUP_KEYS_COMPATIBILITY
|
|
|
|
bool "Enable legacy nvs_set function behavior when same key is reused with different data types"
|
|
|
|
default n
|
|
|
|
help
|
2023-09-05 09:05:23 -04:00
|
|
|
Enabling this option will switch the nvs_set() family of functions to the legacy mode:
|
|
|
|
when called repeatedly with the same key but different data type, the existing value
|
|
|
|
in the NVS remains active and the new value is just stored, actually not accessible through
|
|
|
|
corresponding nvs_get() call for the key given. Use this option only when your application
|
|
|
|
relies on such NVS API behaviour.
|
2018-07-02 07:10:43 -04:00
|
|
|
endmenu
|