zephyr/net/Kconfig
Johan Hedberg 6bc645962a Bluetooth: Move Bluetooth host stack to subsys
Move the Bluetooth host stack from net/bluetooth to
subsys/bluetooth/host. This is preparation for having both host and
controller under the same root, i.e. subsys/bluetooth/.

Change-Id: I3bc796f7e331fca0c485f3890d62b9c03e027b96
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
2016-11-04 22:05:05 +02:00

49 lines
1.2 KiB
Plaintext

# Kconfig - net stack configuration options
#
# Copyright (c) 2015 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
menu "Networking"
source "net/ip/Kconfig"
config NET_BUF
bool "Network buffer support"
default n
help
This option enables support for generic network protocol
buffers.
config NET_BUF_DEBUG
bool "Network buffer debugging"
depends on NET_BUF
select STDOUT_CONSOLE
select SYS_LOG
default n
help
Enable debug logs and checks for the generic network buffers.
config NET_BUF_SIMPLE_DEBUG
bool "Network buffer memory debugging"
depends on NET_BUF_DEBUG
select STDOUT_CONSOLE
select SYS_LOG
default n
help
Enable extra debug logs and checks for the generic network buffers.
endmenu