zephyr/subsys/net/Kconfig
Henrik Brix Andersen ced80b13bf lib: net_buf: move the network buffer implementation to lib
Move the net_buf implementation from the networking subsystem to a library
as they have no dependency on the networking subsystem.

Network buffers are used in subsystems outside of networking
(e.g. Bluetooth, USB).

Fixes: #36374

Signed-off-by: Henrik Brix Andersen <henrik@brixandersen.dk>
2024-09-07 11:19:05 -05:00

40 lines
794 B
Plaintext

# Net stack configuration options
# Copyright (c) 2015 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
menu "Networking"
config NETWORKING
bool "Link layer and networking (including IP)"
select NET_BUF
select POLL
select ENTROPY_GENERATOR
help
This option enables generic link layer and networking support
and is the basis for higher level protocols (e.g. IP protocols).
if NETWORKING
# Such option should not be configured manually but by device drivers
# which supports PM properly.
config NET_POWER_MANAGEMENT
bool
depends on PM_DEVICE
source "subsys/net/Kconfig.hostname"
source "subsys/net/l2/Kconfig"
source "subsys/net/ip/Kconfig"
source "subsys/net/pkt_filter/Kconfig"
source "subsys/net/lib/Kconfig"
source "subsys/net/conn_mgr/Kconfig"
endif
endmenu