MCTP was just introduced in Zephyr 4.1. Mark the feature as experimental. Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
23 lines
490 B
Text
23 lines
490 B
Text
# Copyright (c) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig MCTP
|
|
bool "Management Component Transport Protocol [EXPERIMENTAL]"
|
|
select EXPERIMENTAL
|
|
help
|
|
Enable the MCTP Subsystem and Module Usage
|
|
|
|
if MCTP
|
|
|
|
config MCTP_UART
|
|
bool "MCTP UART Binding"
|
|
depends on UART_ASYNC_API
|
|
help
|
|
Build the MCTP UART binding to use MCTP over Zephyr's async UART
|
|
interface.
|
|
|
|
module = MCTP
|
|
module-str = MCTP
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
endif
|