zephyr/subsys/fs/nvs/Kconfig
Peter A. Bigot b3f99fe0aa subsys/fs: remove FS_FLASH_STORAGE_PARTITION
The last reference to this symbol was removed when flash area management
moved to devicetree.

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
2019-07-22 18:21:50 +02:00

30 lines
648 B
Plaintext

# Kconfig - Non-volatile Storage NVS
#
# Copyright (c) 2018 Laczen
#
# SPDX-License-Identifier: Apache-2.0
#
config NVS
bool "Non-volatile Storage"
help
Enable support of Non-volatile Storage.
if NVS
module = NVS
module-str = nvs
source "subsys/logging/Kconfig.template.log_config"
config NVS_PROTECT_FLASH
bool "Non-volatile Storage extra flash protection"
help
Enable extra protection against unnecessary writes to flash. This
enables a extra read check, if data is not changed no write is
performed. If this check is already performed (e.g. no writes unless
data is changed) you can disable this operation.
endif # NVS