mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-16 19:52:36 +00:00
'default N' should have been 'default n', though they happen to have the same effect here, due to undefined Kconfig symbols ('N') evaluating to 'n' in a boolean sense. Kconfig bool symbols implicitly default to 'n', so remove the default rather than fixing it. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
37 lines
768 B
Plaintext
37 lines
768 B
Plaintext
#
|
|
# Copyright (c) 2016 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
source "lib/libc/Kconfig"
|
|
|
|
menu "Additional libraries"
|
|
|
|
config JSON_LIBRARY
|
|
bool
|
|
prompt "Build JSON library"
|
|
help
|
|
Build a minimal JSON parsing/encoding library. Used by sample
|
|
applications such as the NATS client.
|
|
|
|
config RING_BUFFER
|
|
bool
|
|
prompt "Enable ring buffers"
|
|
default n
|
|
help
|
|
Enable usage of ring buffers. This is similar to kernel FIFOs but ring
|
|
buffers manage their own buffer memory and can store arbitrary data.
|
|
For optimal performance, use buffer sizes that are a power of 2.
|
|
|
|
config BASE64
|
|
bool
|
|
prompt "Enable base64 encoding and decoding"
|
|
default n
|
|
help
|
|
Enable base64 encoding and decoding functionality
|
|
|
|
source "lib/posix/Kconfig"
|
|
|
|
endmenu
|