zephyr/subsys/net/lib/trickle/Kconfig
Jukka Rissanen b6d9ed095d net: Move trickle files to lib
The trickle algorithm files are clearly a library so move
them under lib/ directory.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
2023-12-11 10:50:35 +01:00

19 lines
471 B
Plaintext

# Trickle Library for Zephyr
# Copyright (c) 2016 Intel Corporation.
# SPDX-License-Identifier: Apache-2.0
config NET_TRICKLE
bool "Trickle library"
help
Normally this is enabled automatically if needed,
so say 'n' if unsure.
if NET_TRICKLE
module = NET_TRICKLE
module-dep = NET_LOG
module-str = Log level for Trickle algorithm
module-help = Enables Trickle library output debug messages
source "subsys/net/Kconfig.template.log_config.net"
endif # NET_TRICKLE