commit | 891112db3d77d415a29776feb529dfb2644c7f55 | [log] [tgz] |
---|---|---|
author | Jayanth Othayoth <ojayanth@gmail.com> | Sun Jun 08 10:09:47 2025 -0500 |
committer | Jayanth Othayoth <ojayanth@gmail.com> | Mon Jul 21 11:53:46 2025 -0500 |
tree | 515ff19547979da61e1c020b22f9ed30de5b4db3 | |
parent | ce1119ade9ea0cc2f32f83c8d27a6f8efd7b763f [diff] |
clang-tidy: wrap test_utils.hpp in cpp Introduced a temporary wrapper `.cpp` file that includes `test_utils.hpp` to allow clang-tidy to analyze the header in the correct compilation context. clang-tidy was failing to resolve includes like `actions/action.hpp` when run directly on `test_utils.hpp`, due to missing include path context in the compilation database. This is a known limitation when analyzing header files outside of a translation unit. By wrapping the header in a `.cpp` file and running clang-tidy on that instead, we ensure that all include paths and macros are correctly applied, resolving false-positive errors and improving static analysis reliability. Change-Id: I9a72d14ab844c0b53eebea6229e0bc22ff8aa273 Signed-off-by: Jayanth Othayoth <ojayanth@gmail.com>
This repository contains applications for configuring and monitoring devices that deliver power to the system.
Actively-maintained applications:
Legacy applications:
To build all applications in this repository:
meson setup 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/<driver>.<instance>/
/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", }