commit | 8c324c9c2bd461a89d1011dc396d8d5511f2a5df | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Wed May 31 21:59:39 2023 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Wed May 31 22:12:19 2023 -0500 |
tree | 0a73c540d093320f3aa8cc74b6de523d1ed27c90 | |
parent | 81e554c87de45de05c2d7be4bda18ac48deadcb5 [diff] |
add cstdint include GCC 13 adjusts the include structure such that cstdint does not end up being included by default in many cases. Add the include whenever the `uint*` class types are used to prevent a compile failure. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I0bb3dda5fe96db2109507500dfad29c3269454f7
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", }