Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/openbmc/ipmi-blob-tool

Host-side Tool for talking to OpenBMC BLOB handlers over IPMI.
https://github.com/openbmc/ipmi-blob-tool

Last synced: about 12 hours ago
JSON representation

Host-side Tool for talking to OpenBMC BLOB handlers over IPMI.

Awesome Lists containing this project

README

        

# 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:

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

For a test / debug build, a typical configuration is

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