diff options
author | Konstantin Aladyshev <aladyshev22@gmail.com> | 2022-03-20 00:05:52 +0300 |
---|---|---|
committer | Konstantin Aladyshev <aladyshev22@gmail.com> | 2022-03-20 00:06:30 +0300 |
commit | aeb813ac73c84fe2a6e8b87be429e661c08e5cae (patch) | |
tree | a96cc5c9b5c7622e2b1f5516631da28807247beb /Lessons | |
parent | 251346336d3cd5280357f5ec0163ec52228d084d (diff) | |
download | UEFI-Lessons-aeb813ac73c84fe2a6e8b87be429e661c08e5cae.tar.gz UEFI-Lessons-aeb813ac73c84fe2a6e8b87be429e661c08e5cae.tar.bz2 UEFI-Lessons-aeb813ac73c84fe2a6e8b87be429e661c08e5cae.zip |
Add command to drop GDB print character limit
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
Diffstat (limited to 'Lessons')
-rw-r--r-- | Lessons/Lesson_42/README.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lessons/Lesson_42/README.md b/Lessons/Lesson_42/README.md index 9e7474f..8cbf5a0 100644 --- a/Lessons/Lesson_42/README.md +++ b/Lessons/Lesson_42/README.md @@ -392,6 +392,11 @@ You can even do it in one command: 0x6d02098: u"PciRoot(0x0)/Pci(0x2,0x0)" ``` +Sometimes printed data can be so long, that the gdb wouldn't print it completely. In this case you can drop print character limit with the following command: +``` +(gdb) set print elements 0 +``` + # Minimal Tmux cheatsheet - `Ctrl+b` and `up/down/left/right` - switch between panes |