mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 13:22:36 +00:00
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>
34 lines
505 B
Plaintext
34 lines
505 B
Plaintext
# Copyright (c) 2016 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
source "lib/libc/Kconfig"
|
|
|
|
source "lib/cpp/Kconfig"
|
|
|
|
source "lib/crc/Kconfig"
|
|
|
|
menu "Additional libraries"
|
|
|
|
source "lib/hash/Kconfig"
|
|
|
|
source "lib/heap/Kconfig"
|
|
|
|
source "lib/mem_blocks/Kconfig"
|
|
|
|
source "lib/net_buf/Kconfig"
|
|
|
|
source "lib/os/Kconfig"
|
|
|
|
source "lib/posix/Kconfig"
|
|
|
|
source "lib/open-amp/Kconfig"
|
|
|
|
source "lib/smf/Kconfig"
|
|
|
|
source "lib/acpi/Kconfig"
|
|
|
|
source "lib/runtime/Kconfig"
|
|
|
|
source "lib/utils/Kconfig"
|
|
endmenu
|