dbus-based ipmid for host-endpoint IPMI commands

Clone this repo:
  1. cbe50fd Replace boost::lexical_cast logs with lg2 by George Liu · 3 weeks ago master
  2. c024b39 Replace boost starts_with/ends_with with std::string by George Liu · 3 weeks ago
  3. 0ab8479 Handle Value::Unit::Percent unit correctly by Konstantin Aladyshev · 4 months ago
  4. 62be74f Add NVIDIA license for files under oem/nvidia by Prithvi Pai · 2 weeks ago
  5. f761631 Fix handling of 16-byte IPMI username without null terminator by Orit Kashany · 3 weeks ago

phosphor-host-ipmid

Compile ipmid with default options

meson builddir
ninja -C builddir

Compile ipmid with yocto defaults

meson builddir -Dbuildtype=minsize -Db_lto=true -Dtests=disabled
ninja -C builddir

If any of the dependencies are not found on the host system during configuration, meson automatically gets them via its wrap dependencies mentioned in ipmid/subprojects.

Enable/Disable meson wrap feature

meson builddir -Dwrap_mode=nofallback
ninja -C builddir

Enable debug traces

meson builddir -Dbuildtype=debug
ninja -C builddir

Generate test coverage report

meson builddir -Db_coverage=true -Dtests=enabled
ninja -C builddir test
ninja -C builddir coverage