Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/openbmc/ipmi-blob-tool
- Owner: openbmc
- License: apache-2.0
- Created: 2019-03-05T21:07:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-16T22:43:08.000Z (3 months ago)
- Last Synced: 2024-08-16T23:41:21.441Z (3 months ago)
- Language: C++
- Homepage:
- Size: 246 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```