diff options
author | Frédéric Danis <frederic.danis@collabora.com> | 2020-03-20 12:59:22 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-10-14 18:16:19 +0300 |
commit | 9744d1a547847dea89277b00606fe4c837c1b4ea (patch) | |
tree | d473ca3cbd4032fc990850875b2f328ae16438d7 /doc/index.rst | |
parent | 55fca74a5ba9bb0a101b247f421e81322b945a7b (diff) | |
download | u-boot-9744d1a547847dea89277b00606fe4c837c1b4ea.tar.xz |
cmd: Add command to display or save Linux PStore dumps
This patch adds a new pstore command allowing to display or save ramoops
logs (oops, panic, console, ftrace and user) generated by a previous
kernel crash.
PStore parameters can be set in U-Boot configuration file, or at run-time
using "pstore set" command. Records size should be the same as the ones
used by kernel, and should be a power of 2.
This command allows:
- to display uncompressed logs
- to save compressed or uncompressed logs, compressed logs are saved as a
compressed stream, it may need some work to be able to decompress it,
e.g. adding a fake header:
"printf "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\x00" |
cat - dmesg-ramoops-0.enc.z | gzip -dc"
- ECC part is not used to check memory corruption
- only 1st FTrace log is displayed or saved
Signed-off-by: Frédéric Danis <frederic.danis@collabora.com>
[trini: Minor updates for current design, correct spacing in rST]
Signed-off-by: Tom Rini <trini@konsulko.com>
Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'doc/index.rst')
-rw-r--r-- | doc/index.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/index.rst b/doc/index.rst index fd9f10f28e..68a083b16b 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -109,6 +109,13 @@ Android-specific features available in U-Boot. android/index +Command line +------------ +.. toctree:: + :maxdepth: 2 + + pstore.rst + Indices and tables ================== |