commit | 07aa6b6c772c79e4aa2a7bc37c5162ce5de01a7e | [log] [tgz] |
---|---|---|
author | Deepak Kamat <dkamat@nvidia.com> | Tue Mar 25 17:24:28 2025 +0530 |
committer | Deepak Kamat <dkamat@nvidia.com> | Tue Apr 01 05:37:35 2025 +0000 |
tree | 2f694fa1f4bcf215a5385d64e6aa974bae88960c | |
parent | a3e6a48cdf4a5dad5422fa2611f24fc0f8da9e20 [diff] |
Dreport: Add Kernel Command Line Info Add functionality to collect kernel command line information as part of the debug data collection process. The new plugin retrieves data from /proc/cmdline, which contains the kernel parameters passed during boot. Including this information in debug reports will enhance troubleshooting capabilities for system boot and configuration issues in OpenBMC-based systems. It provides a snapshot of the kernel's runtime parameters, which can help identify misconfigurations or diagnose boot-related problems. Tested on qemuarm platform. ''' Kernel cmdline: console=ttyAMA0 root=/dev/vda rw Enables serial console debugging Specifies root filesystem location Mounts root in read-write mode [1] busctl call xyz.openbmc_project.Dump.Manager /xyz/openbmc_project/dump/bmc xyz.openbmc_project.Dump.Create CreateDump a{sv} 1 "i" i 1234 tar -xvf obmcdump_1_1742903558.tar.xz obmcdump_1_1742903558/ obmcdump_1_1742903558/summary.log ... obmcdump_1_1742903558/kernalcmdline.log ... cat obmcdump_1_1742903558/kernalcmdline.log | head console=ttyAMA0 root=/dev/vda rw ''' Change-Id: I71177a2d3ff7b9b80ce11eb22ef01434c6ecd686 Signed-off-by: Deepak Kamat <dkamat@nvidia.com>
Phosphor Debug Collector provides mechanisms to collect various log files and system parameters. Used to troubleshoot problems in OpenBMC based systems.
One such mechanism is dreport, a script that collects debug data and packages it into an archive file.
To build this package with meson, do the following steps:
1. meson builddir 2. ninja -C builddir
To clean the built files run ninja -C builddir clean
.
Tests can be run in the CI docker container, refer local-ci-build
or with an OpenBMC x86 sdk(see below for x86 steps).
meson -Dtests=enabled build ninja -C build test