1# Copyright (c) 2024 Intel Corporation 2# SPDX-License-Identifier: Apache-2.0 3 4menuconfig MCTP 5 bool "Management Component Transport Protocol [EXPERIMENTAL]" 6 select EXPERIMENTAL 7 help 8 Enable the MCTP Subsystem and Module Usage 9 10if MCTP 11 12config MCTP_UART 13 bool "MCTP UART Binding" 14 depends on UART_ASYNC_API 15 help 16 Build the MCTP UART binding to use MCTP over Zephyr's async UART 17 interface. 18 19module = MCTP 20module-str = MCTP 21source "subsys/logging/Kconfig.template.log_config" 22 23endif 24