Name Date Size #Lines LOC

..Today-

analyzer/H30-Aug-2024-76,28074,337

attn/H22-Oct-2024-5,0972,836

subprojects/H28-Jun-2024-4937

test/H30-Aug-2024-6,7255,492

util/H25-Oct-2024-3,9432,416

.clang-formatH A D30-Aug-20243.7 KiB137135

.eslintignoreH A D05-Nov-202145 32

.gitignoreH A D29-Mar-202287 65

.prettierignoreH A D15-Dec-20227 21

.prettierrc.yamlH A D15-Dec-2022115 87

LICENSEH A D07-Mar-202111.1 KiB202169

OWNERSH A D24-Oct-20241.6 KiB4944

README.mdH A D09-Aug-2024654 2618

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

cli.cppH A D04-May-20223.4 KiB11695

cli.hppH A D07-Mar-20211.2 KiB416

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

listener.cppH A D07-Mar-20214.8 KiB176109

listener.hppH A D07-Mar-2021564 264

main.cppH A D16-May-20235 KiB14077

main_nl.cppH A D16-May-20232.8 KiB8445

meson.buildH A D28-Jun-20246.2 KiB190150

meson.optionsH A D14-Jun-2024584 109

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