commit | 6687f125b6b8c33157b4e2f99c63ca4b12edf088 | [log] [tgz] |
---|---|---|
author | Shawn McCarney <shawnmm@us.ibm.com> | Tue Jun 02 16:49:24 2020 -0500 |
committer | Shawn McCarney <shawnmm@us.ibm.com> | Tue Jun 02 16:49:24 2020 -0500 |
tree | 8c63d0e0fcde0baec7ac8234fcc568dc30afef33 | |
parent | 89283d10ec148cdcdf14738bfe5991866d0a3cf8 [diff] |
power-supply: Fix variant build issue The data type sdbusplus::message::variant has been removed. Most of the instances of usage within the phosphor-power repository were already changed to std::variant. However, there was one remaining instance that needs to be fixed. Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com> Change-Id: Ie763530fa01a2917c220ff34537e5c8c3db8d25e
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", }