1 2if MCTP 3 4menu "MCTP Device Drivers" 5 6config MCTP_SERIAL 7 tristate "MCTP serial transport" 8 depends on TTY 9 select CRC_CCITT 10 help 11 This driver provides an MCTP-over-serial interface, through a 12 serial line-discipline, as defined by DMTF specification "DSP0253 - 13 MCTP Serial Transport Binding". By attaching the ldisc to a serial 14 device, we get a new net device to transport MCTP packets. 15 16 This allows communication with external MCTP endpoints which use 17 serial as their transport. It can also be used as an easy way to 18 provide MCTP connectivity between virtual machines, by forwarding 19 data between simple virtual serial devices. 20 21 Say y here if you need to connect to MCTP endpoints over serial. To 22 compile as a module, use m; the module will be called mctp-serial. 23 24endmenu 25 26endif 27