zephyr/subsys/fs/fcb/Kconfig
Dominik Ermel 5a0ecb9641 flash: Move dependency on FLASH_PAGE_LAYOUT where it belongs
The commit adds dependency on Kconfig FLASH_PAGE_LAYOUT to subsystems
that really require it:
 FCB, NVS, LittleFS
and removes direct selection from '*.conf' files where no longer
needed.

Signed-off-by: Dominik Ermel <dominik.ermel@nordicsemi.no>
2024-04-10 10:01:40 +02:00

27 lines
517 B
Plaintext

# Flash Circular Buffer module
# Copyright (c) 2017-2023 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
#
# Flash Circular Buffer
#
config FCB
bool "Flash Circular Buffer support"
depends on FLASH_MAP
select CRC
select FLASH_PAGE_LAYOUT
help
Enable support of Flash Circular Buffer.
if FCB
config FCB_ALLOW_FIXED_ENDMARKER
bool "Allow FCB instances to have a fixed endmarker"
help
This allows the FCB instances to disable CRC checks in
favor of increased write throughput.
endif