commit | 934201f7e70f11945daa0ee5c6d55711a55802d8 | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Wed Oct 06 15:41:36 2021 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Wed Oct 06 15:41:36 2021 -0500 |
tree | b6d79f566261551559b895cae5117389bb8dce26 | |
parent | 93064d8fcef2c6fde1f61c0cedacb46b21eab039 [diff] |
build: switch to C++20 Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I16600d03a8fea15db16ca254ab6a0b3864562b6b
This component implements middleware for sensors and metrics aggregation.
This application is implementation of Telemetry proposed in OpenBMC design docs [1]
.
It's responsible for:
[2]
,[3]
updates.[4]
There are two way to build telemetry service:
To build it using bitbake follow the guide from OpenBMC docs[5]
. To build it using meson follow the quick guide to install meson[6]
and then run below commands
meson build cd build ninja
After successful build you should be able to run telemetry binary or start unit tests
./tests/telemetry-ut ./telemetry
In case if system is missing boost dependency, it is possible to build it locally and set BOOST_ROOT environment variable to location of built files for meson. After this change meson should be able to detect boost dependency. See [7]
for more details.
More information can be found in OpenBMC docs repository [8]
.