Name Date Size #Lines LOC

..--

analyzer/H--76,29974,356

attn/H--5,2802,976

subprojects/H--4937

test/H--6,7285,495

util/H--4,1662,602

.clang-formatH A D01-Feb-20253.7 KiB137135

.eslintignoreH A D03-Nov-202145 32

.gitignoreH A D22-Dec-202187 65

.prettierignoreH A D14-Dec-20227 21

.prettierrc.yamlH A D14-Dec-2022115 87

LICENSEH A D07-Mar-201911.1 KiB202169

OWNERSH A D22-Oct-20241.6 KiB4944

README.mdH A D05-Aug-2024654 2618

buildinfo.hpp.inH A D15-Apr-2021196 64

cli.cppH A D28-Apr-20223.4 KiB11695

cli.hppH A D06-Apr-20201.2 KiB416

config.h.inH A D01-Jun-2024958 2719

listener.cppH A D09-Nov-20204.8 KiB176109

listener.hppH A D27-Mar-2020564 264

main.cppH A D10-May-20235 KiB14077

main_nl.cppH A D10-May-20232.8 KiB8445

meson.buildH A D03-Mar-20256.4 KiB205163

meson.optionsH A D20-Jan-2025755 2827

README.md

1# Hardware Diagnostics for POWER Systems
2
3In the event of a system fatal error reported by the internal system hardware
4(processor chips, memory chips, I/O chips, system memory, etc.), POWER Systems
5have the ability to diagnose the root cause of the failure and perform any
6service action needed to avoid repeated system failures.
7
8Aditional details TBD.
9
10## Building
11
12For a standard OpenBMC release build, you want something like:
13
14```sh
15meson -Dtests=disabled <build_dir>
16ninja -C <build_dir>
17ninja -C <build_dir> install
18```
19
20For a test / debug build, a typical configuration is:
21
22```sh
23meson -Dtests=enabled <build_dir>
24ninja -C <build_dir> test
25```
26