Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | Today | - | ||||
analyzer/ | H | 30-Aug-2024 | - | 76,280 | 74,337 | |
attn/ | H | 22-Oct-2024 | - | 5,097 | 2,836 | |
subprojects/ | H | 28-Jun-2024 | - | 49 | 37 | |
test/ | H | 30-Aug-2024 | - | 6,725 | 5,492 | |
util/ | H | 25-Oct-2024 | - | 3,943 | 2,416 | |
.clang-format | H A D | 30-Aug-2024 | 3.7 KiB | 137 | 135 | |
.eslintignore | H A D | 05-Nov-2021 | 45 | 3 | 2 | |
.gitignore | H A D | 29-Mar-2022 | 87 | 6 | 5 | |
.prettierignore | H A D | 15-Dec-2022 | 7 | 2 | 1 | |
.prettierrc.yaml | H A D | 15-Dec-2022 | 115 | 8 | 7 | |
LICENSE | H A D | 07-Mar-2021 | 11.1 KiB | 202 | 169 | |
OWNERS | H A D | 24-Oct-2024 | 1.6 KiB | 49 | 44 | |
README.md | H A D | 09-Aug-2024 | 654 | 26 | 18 | |
buildinfo.hpp.in | H A D | 20-Apr-2021 | 196 | 6 | 4 | |
cli.cpp | H A D | 04-May-2022 | 3.4 KiB | 116 | 95 | |
cli.hpp | H A D | 07-Mar-2021 | 1.2 KiB | 41 | 6 | |
config.h.in | H A D | 14-Jun-2024 | 958 | 27 | 19 | |
listener.cpp | H A D | 07-Mar-2021 | 4.8 KiB | 176 | 109 | |
listener.hpp | H A D | 07-Mar-2021 | 564 | 26 | 4 | |
main.cpp | H A D | 16-May-2023 | 5 KiB | 140 | 77 | |
main_nl.cpp | H A D | 16-May-2023 | 2.8 KiB | 84 | 45 | |
meson.build | H A D | 28-Jun-2024 | 6.2 KiB | 190 | 150 | |
meson.options | H A D | 14-Jun-2024 | 584 | 10 | 9 |
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