1Exposes generic hwmon entries as DBus objects. More information can be found at 2[Sensor Architecture](https://github.com/openbmc/docs/blob/master/architecture/sensor-architecture.md) 3 4## To Build 5 6``` 7To build this package, do the following steps: 8 9 1. meson build 10 2. ninja -C build 11 12To clean the repository run `rm -rf build`. 13``` 14 15## D-Bus bus names 16 17``` 18To enable the use of Linux features like cgroups prioritization and 19udev/systemd control, one instance of phosphor-hwmon is intended to 20be run per hwmon sysfs class instance. 21 22This requires an algorithm for selecting a stable, well-known D-Bus busname. 23 24The algorithm is <PREFIX>-<ID>.Hwmon<N> where PREFIX is an autoconf 25configurable prefix (BUSNAME_PREFIX, xyz.openbmc_project by default), 26ID is either a std::hash of the /sys/devices path backing the hwmon class 27instance or provided suffix value from the command line, and N is 28the implemented phosphor-hwmon D-Bus API version. 29``` 30