Add kernel MCTP (AF_MCTP) support and transport-implementation option
-Added support for kernel MCTP (AF_MCTP) to enable MCTP communication
using AF_MCTP sockets.
- Introduced a new configuration option 'transport-implementation'
The 'transport-implementation' option can be set to either:
- 'mctp-demux': Uses the existing mctp-demux transport method.
- 'af-mctp': Uses the new kernel AF_MCTP transport method.
Change-Id: I2978273fe4579d1dce00368dabb7f90815dbbce8
Signed-off-by: Lakshmi Yadlapati <lakshmiy@us.ibm.com>
Signed-off-by: Eddie James <eajames@linux.ibm.com>
diff --git a/meson.options b/meson.options
index c187f79..ddb3246 100644
--- a/meson.options
+++ b/meson.options
@@ -59,3 +59,10 @@
value: '/org/openpower/dump',
description : 'Object path requesting OpenPOWER dumps'
)
+
+option(
+ 'transport-implementation',
+ type: 'combo',
+ choices: ['mctp-demux', 'af-mctp'],
+ description: 'transport via af-mctp or mctp-demux'
+)