diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-05-04 19:40:01 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-05-04 19:40:01 +0200 |
| commit | d8670d8eeb55bc0ea347cfe4a9a27640fe4e4e7e (patch) | |
| tree | 58c69126ad8b2147f4a5b68350207b811d00f1e2 /.vscode/launch.json | |
| parent | 78e42a1b6e0a857865be1e60f82871ac13c91bb1 (diff) | |
| download | kernel-d8670d8eeb55bc0ea347cfe4a9a27640fe4e4e7e.tar.xz kernel-d8670d8eeb55bc0ea347cfe4a9a27640fe4e4e7e.zip | |
debug: add multiboot2 information dump tool
This patch introduces a new GDB tool `dump_mb2i` that dump the
multiboot2 information provided by the bootloader. This tool can be
invoked in the GDB console. For example in vscode:
-exec dump_mb2i ((kapi::boot::information)bootstrap_information).mbi
The tool expects the address of the loader provided MB2 information as
its only argument.
Diffstat (limited to '.vscode/launch.json')
| -rw-r--r-- | .vscode/launch.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 15f5d3a..d5b2401 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -28,7 +28,7 @@ }, { "description": "Load custom Python helpers", - "text": "-interpreter-exec console \"source ${workspaceFolder}/scripts/gdb/pretty_printers.py\"" + "text": "-interpreter-exec console \"source ${workspaceFolder}/scripts/gdb/load.py\"" } ] } |
