Clone this repo:

Branches

  1. e78b318 build: use allowed over enabled by Patrick Williams · 5 months ago master
  2. ff2d30f clang-format: copy latest and re-format by Patrick Williams · 6 months ago
  3. 8b3dc87 meson_options.txt: Support for reading options from meson.options by George Liu · 8 months ago
  4. 58a690a build: upgrade to C++23 by Patrick Williams · 10 months ago
  5. c99b19f clang-format: copy latest and re-format by Patrick Williams · 12 months ago

ipmi-blob-tool

ipmi-blob-tool is a host-side tool that speaks the BLOB protocol over IPMI.

Dependencies

Test cases require google{test,mock}, valgrind, and lcov.

Building

For a standard release build, you want something like:

./bootstrap.sh
./configure --disable-tests
make
make install

For a test / debug build, a typical configuration is

./bootstrap.sh
./configure --enable-tests --enable-coverage --enable-valgrind
make
make check
make check-valgrind
make check-code-coverage