Add CONFIG_CRC for building CRC related routines. CRC routines are now being built for each application, whether used or not and are add in the build system unconditionally. Keep CONFIG_CRC enabled by default for now and until all users have converted to use the new option. Partial fix for #50654 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
16 lines
279 B
Plaintext
16 lines
279 B
Plaintext
# Flash Circular Buffer module
|
|
|
|
# Copyright (c) 2017 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
|
|
help
|
|
Enable support of Flash Circular Buffer.
|