mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 16:32:57 +00:00
The functions fnmatch(), getopt(), getentropy() and others are grouped into the standard Option Group POSIX_C_LIB_EXT. The getentropy() function is currently in-draft for Issue 8 as of 2021. https://www.opengroup.org/austin/docs/austin_1110.pdf Not surprisingly, the POSIX_C_LIB_EXT Option Group also includes the highly debated strnlen() function. Moving that function will be deferred until later. Signed-off-by: Chris Friedt <cfriedt@tenstorrent.com>
17 lines
330 B
Plaintext
17 lines
330 B
Plaintext
# Copyright (c) 2016,2023 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
config CRC
|
|
bool "Cyclic redundancy check (CRC) Support"
|
|
help
|
|
Enable use of CRC.
|
|
|
|
if CRC
|
|
config CRC_SHELL
|
|
bool "CRC Shell"
|
|
depends on SHELL
|
|
select POSIX_C_LIB_EXT
|
|
help
|
|
Enable CRC checking for memory regions from the shell.
|
|
endif # CRC
|