.gitignore: added unittest logging output

Added an ignore line for the unit-test generated output.

Change-Id: Ib6c2d1e6b01a67b9c4cbdfd35c421a4ab5c6f632
Signed-off-by: Patrick Venture <venture@google.com>
1 file changed
tree: c9f21f7b2c2febfc3e048970c65d1ae890a75b85
  1. msl/
  2. test/
  3. tools/
  4. .clang-format
  5. .gitignore
  6. argument.cpp
  7. argument.hpp
  8. bootstrap.sh
  9. configure.ac
  10. env.cpp
  11. env.hpp
  12. fan_pwm.cpp
  13. fan_pwm.hpp
  14. fan_speed.cpp
  15. fan_speed.hpp
  16. hwmon.cpp
  17. hwmon.hpp
  18. hwmonio.cpp
  19. hwmonio.hpp
  20. interface.hpp
  21. LICENSE
  22. mainloop.cpp
  23. mainloop.hpp
  24. MAINTAINERS
  25. Makefile.am
  26. readd.cpp
  27. README.iio.md
  28. README.md
  29. sensor.cpp
  30. sensor.hpp
  31. sensorset.cpp
  32. sensorset.hpp
  33. sysfs.cpp
  34. sysfs.hpp
  35. targets.hpp
  36. thresholds.hpp
  37. timer.cpp
  38. timer.hpp
  39. types.hpp
  40. util.hpp
README.md

Exposes generic hwmon entries as DBus objects. More information can be found at Sensor Architecture

To Build

To build this package, do the following steps:

    1. ./bootstrap.sh
    2. ./configure ${CONFIGURE_FLAGS}
    3. make

To clean the repository run `./bootstrap.sh clean`.

D-Bus bus names

To enable the use of Linux features like cgroups prioritization and
udev/systemd control, one instance of phosphor-hwmon is intended to
be run per hwmon sysfs class instance.

This requires an algorithm for selecting a stable, well-known D-Bus busname.

The algorithm is <PREFIX>-<ID>.Hwmon<N> where PREFIX is an autoconf
configurable prefix (BUSNAME_PREFIX, xyz.openbmc_project by default),
ID is a std::hash of the /sys/devices path backing the hwmon class
instance, and N is the implemented phosphor-hwmon D-Bus API version.