# phosphor-host-ipmid **Repository Path**: boston-chen/phosphor-host-ipmid ## Basic Information - **Project Name**: phosphor-host-ipmid - **Description**: forked from openbmc - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-01-03 - **Last Updated**: 2025-01-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # phosphor-host-ipmid ## Compile ipmid with default options ```ascii meson builddir ninja -C builddir ``` ## Compile ipmid with yocto defaults ```ascii 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 ```ascii meson builddir -Dwrap_mode=nofallback ninja -C builddir ``` ## Enable debug traces ```ascii meson builddir -Dbuildtype=debug ninja -C builddir ``` ## Generate test coverage report ```ascii meson builddir -Db_coverage=true -Dtests=enabled ninja -C builddir test ninja -C builddir coverage ```