dbus-based ipmid for host-endpoint IPMI commands

Clone this repo:

Branches

  1. 50f186c utils: Add the getSubTree method by George Liu · 8 weeks ago master
  2. 1f42d1a user_mgmt: Fix incorrect log description by George Liu · 8 weeks ago
  3. 863e323 sensordatahandler: Remove unused method by George Liu · 8 weeks ago
  4. 6fdce0a settings: Remove unused methods by George Liu · 8 weeks ago
  5. e561d3e chassishanlder: restorePolicy supports Unknown type by George Liu · 8 weeks ago

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