Bool symbols implicitly default to 'n'. A 'default n' can make sense e.g. in a Kconfig.defconfig file, if you want to override a 'default y' on the base definition of the symbol. It isn't used like that on any of these symbols though. Remove some 'default ""' properties on string symbols too. Also make definitions more consistent by converting some config FOO <type> prompt "foo" definitions to a shorter form: config FOO <type> "foo" This shorthand works for int/hex/string symbols too, not just for bool symbols. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
22 lines
397 B
Plaintext
22 lines
397 B
Plaintext
# Copyright (c) 2017 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig WEBSOCKET
|
|
bool "Websocket support [EXPERIMENTAL]"
|
|
depends on HTTP
|
|
select NET_TCP
|
|
select BASE64
|
|
help
|
|
This option enables the websocket library.
|
|
|
|
if WEBSOCKET
|
|
|
|
config NET_DEBUG_WEBSOCKET
|
|
bool "Debug websocket library"
|
|
help
|
|
Enables websocket library to output debug messages
|
|
|
|
endif # WEBSOCKET
|