xref: /openbmc/openpower-hw-diags/README.md (revision 8b10d699)
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```
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```
23meson -Dtests=enabled <build_dir>
24ninja -C <build_dir> test
25```
26