Kconfig 706 B

123456789101112131415161718192021222324
  1. menuconfig MCTP
  2. depends on NET
  3. bool "MCTP core protocol support"
  4. help
  5. Management Component Transport Protocol (MCTP) is an in-system
  6. protocol for communicating between management controllers and
  7. their managed devices (peripherals, host processors, etc.). The
  8. protocol is defined by DMTF specification DSP0236.
  9. This option enables core MCTP support. For communicating with other
  10. devices, you'll want to enable a driver for a specific hardware
  11. channel.
  12. config MCTP_TEST
  13. bool "MCTP core tests" if !KUNIT_ALL_TESTS
  14. select MCTP_FLOWS
  15. depends on MCTP=y && KUNIT=y
  16. default KUNIT_ALL_TESTS
  17. config MCTP_FLOWS
  18. bool
  19. depends on MCTP
  20. select SKB_EXTENSIONS