mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-17 07:22:56 +00:00
- Remove redundant 'n' defaults. 'n' is the default value for bool
symbols.
This makes the auto-generated documentation clearer as well: You get
"implicitly defaults to n" instead of
"- n if <propagated dependencies>".
- Shorten
<type>
prompt "foo"
to
<type> "foo"
This works for all types, not just bool.
- Various formatting nits.
Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
21 lines
406 B
Plaintext
21 lines
406 B
Plaintext
#
|
|
# Copyright (c) 2018 Nordic Semiconductor ASA
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig TLS_CREDENTIALS
|
|
bool "TLS credentials management"
|
|
help
|
|
Enable TLS credentials management subsystem.
|
|
|
|
if TLS_CREDENTIALS
|
|
|
|
config TLS_MAX_CREDENTIALS_NUMBER
|
|
int "Maximum number of TLS credentials"
|
|
default 4
|
|
help
|
|
Maximum number of TLS credentials that can be registered.
|
|
|
|
endif # TLS_CREDENTIALS
|