Searched full:libmctp (Results 1 – 25 of 53) sorted by relevance
123
/openbmc/libmctp/ |
H A D | Makefile.am | 3 lib_LTLIBRARIES = libmctp.la 5 libmctp-alloc.h libmctp-log.h \ 6 libmctp-cmds.h control.c 7 include_HEADERS = libmctp.h 11 include_HEADERS += libmctp-serial.h 16 include_HEADERS += libmctp-astlpc.h 31 utils_mctp_demux_daemon_LDADD = libmctp.la $(pcap_LIBS) 34 pkgconfig_DATA = libmctp.pc 55 LDADD = tests/libtest-utils.a libmctp.la
|
H A D | README.md | 1 # libmctp: Implementation of MCTP (DTMF DSP0236) 9 `libmctp` is a library that implements a straightforward MCTP stack. It will be 21 Linux kernel MCTP support, you do not need to use `libmctp` at all, and can use 22 the sockets directly. `libmctp` does not provide functions to interact with the 41 The APIs and ABI of libmctp are not yet stablised as we continue to explore ways 74 libmctp implements basic support for bridging between two hardware bindings. In 90 Hardware bindings provide a method for libmctp to send and receive packets 111 hardware-specific struct to the libmctp generic core struct 124 The libmctp code is intended to be integrated into other codebases by two 127 1. as a simple library (`libmctp.{a,so}`) which can be compiled separately and [all …]
|
H A D | meson.build | 2 'libmctp', 17 headers = ['libmctp.h'] 21 serial_headers = ['libmctp-serial.h'] 25 astlpc_headers = ['libmctp-astlpc.h'] 29 i2c_headers = ['libmctp-i2c.h'] 158 libmctp = library( variable 174 libmctp, 175 name: 'libmctp', 182 link_with: libmctp, 204 input: 'libmctp-sizes.h.in', [all …]
|
H A D | Makefile.inc | 1 LIBMCTP_DIR ?= libmctp/ 7 LIBMCTP = $(LIBMCTP_DIR)libmctp.a 9 $(LIBMCTP): $(LIBMCTP_OBJS:%=$(LIBMCTP_DIR)%)
|
H A D | CMakeLists.txt | 25 add_library (mctp STATIC alloc.c astlpc.c crc32.c core.c log.c libmctp.h serial.c crc-16-ccitt.c co… 29 $<INSTALL_INTERFACE:include/libmctp) 62 install (FILES libmctp.h DESTINATION include)
|
H A D | i2c-internal.h | 5 #include "libmctp.h" 6 #include "libmctp-i2c.h"
|
H A D | log.c | 5 #include "libmctp.h" 6 #include "libmctp-log.h"
|
H A D | i2c.c | 13 #include "libmctp.h" 14 #include "libmctp-alloc.h" 15 #include "libmctp-log.h" 17 #include "libmctp-i2c.h"
|
H A D | alloc.c | 5 #include "libmctp.h" 6 #include "libmctp-alloc.h"
|
H A D | configure.ac | 3 AC_INIT([libmctp],[0.11],[https://github.com/openbmc/libmctp/issues]) package 165 AC_CONFIG_FILES([Makefile libmctp.pc])
|
H A D | libmctp.pc.in | 6 Name: libmctp
|
H A D | control.h | 6 #include "libmctp.h"
|
H A D | serial.c | 30 #include "libmctp.h" 31 #include "libmctp-alloc.h" 32 #include "libmctp-log.h" 33 #include "libmctp-serial.h"
|
/openbmc/libmctp/tests/ |
H A D | test_cmds.c | 6 #include "libmctp.h" 7 #include "libmctp-alloc.h" 8 #include "libmctp-cmds.h"
|
H A D | test-utils.c | 10 #include <libmctp.h> 11 #include <libmctp-alloc.h>
|
H A D | test_i2c.c | 9 #include "libmctp-log.h" 10 #include "libmctp-i2c.h" 11 #include "libmctp-sizes.h" 12 #include "libmctp-alloc.h"
|
H A D | test_bridge.c | 12 #include <libmctp.h> 13 #include <libmctp-alloc.h>
|
H A D | test-utils.h | 6 #include <libmctp.h>
|
/openbmc/openbmc/meta-phosphor/recipes-phosphor/libmctp/ |
H A D | libmctp_git.bb | 3 HOMEPAGE = "https://github.com/openbmc/libmctp" 17 SRC_URI = "git://github.com/openbmc/libmctp;branch=master;protocol=https \
|
/openbmc/libmctp/utils/ |
H A D | mctp-in.c | 4 #include "libmctp.h" 5 #include "libmctp-serial.h"
|
H A D | mctp-astlpc-daemon.c | 11 #include "libmctp.h" 12 #include "libmctp-astlpc.h"
|
H A D | mctp-pipe.c | 4 #include "libmctp.h" 5 #include "libmctp-serial.h"
|
/openbmc/libmctp/docs/ |
H A D | fuzzing.md | 1 # Fuzzing libmctp 5 From the top level libmctp directory, run `./tests/fuzz/fuzz-build.py`. That
|
/openbmc/libmctp/tests/fuzz/ |
H A D | i2c-fuzz.c | 12 #include "libmctp.h" 13 #include "libmctp-i2c.h" 14 #include "libmctp-sizes.h" 15 #include "libmctp-alloc.h"
|
/openbmc/openbmc/meta-ieisystem/meta-fp5280g3/recipes-phosphor/packagegroups/ |
H A D | packagegroup-obmc-apps.bbappend | 12 libmctp \
|
123