Adding spaces around "=" when definining Kconfig template so that is more consistent with overall style of these template variables. Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
23 lines
481 B
Plaintext
23 lines
481 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
|
|
|
|
module = WEBSOCKET
|
|
module-dep = NET_LOG
|
|
module-str = Log level for weboscket library
|
|
module-help = Enables websocket library to output debug messages.
|
|
source "subsys/net/Kconfig.template.log_config.net"
|
|
|
|
endif # WEBSOCKET
|