commit | 1b5de4620a3d2f7d29dc0b35d1f97f54b0b68820 | [log] [tgz] |
---|---|---|
author | Brandon Wyman <bjwyman@gmail.com> | Fri Jun 05 17:19:43 2020 -0500 |
committer | Shawn McCarney <shawnmm@us.ibm.com> | Wed Jun 10 22:17:28 2020 +0000 |
tree | 45de9f171a653c17d0580b2636ec7b5beb5bcad8 | |
parent | 5b19ea51b5c81681c4d539edcd7773fa2cbd01ad [diff] |
clang-format: set standard to 'Latest' 'Cpp11' is an alias for 'Latest', for historical reasons. https://github.com/llvm/llvm-project/commit/e5032567903de19962333c4bf7d2edceaf4f9824#diff-b49a097415dff2837d9626d422c58ba8R82 This repository should tend towards using the latest C++ standard. Set the C++ standard to Latest. This is the desired behavior, what it is really doing, and a clearer indication of the desired standard without using the potentially confusing 'Cpp11' alias. Signed-off-by: Brandon Wyman <bjwyman@gmail.com> Change-Id: I6b9907320f206f4c6673d06b6206b6b0f9e446c9
This repository contains applications for configuring and monitoring devices that deliver power to the system.
To build all applications in this repository:
meson build ninja -C build
To clean the repository and remove all build output:
rm -rf build
You can specify meson options to customize the build process. For example, you can specify:
Several applications in this repository require a PSU JSON config to run. The JSON config file provides information for:
There is an example psu.json to describe the necessary configurations.
inventoryPMBusAccessType
defines the pmbus access type, which tells the service which sysfs type to use to read the attributes. The possible values are:/sys/bus/i2c/devices/3-0069/
/sys/bus/i2c/devices/3-0069/hwmon/hwmonX/
/sys/kernel/debug/pmbus/hwmonX/
/sys/kernel/debug/pmbus/hwmonX/cffps1/
fruConfigs
defines the mapping between the attribute file and the FRU inventory interface and property. The configuration example below indicates that the service will read part_number
attribute file from a directory specified by the above pmbus access type, and assign to PartNumber
property in xyz.openbmc_project.Inventory.Decorator.Asset
interface."fruConfigs": [ { "propertyName": "PartNumber", "fileName": "part_number", "interface": "xyz.openbmc_project.Inventory.Decorator.Asset" } ]
psuDevices
defines the kernel device dir for each PSU in inventory. The configuration example below indicates that powersupply0
's device is located in /sys/bus/i2c/devices/3-0069
."psuDevices": { "/xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0" : "/sys/bus/i2c/devices/3-0069", }