git://scm.lunaixsky.com
/
lunaix-os.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
feat: lunadbg GDB plugin to ease kernel debugging process.
[lunaix-os.git]
/
lunaix-os
/
scripts
/
gdb
/
lunadbg
/
commands.py
diff --git a/lunaix-os/scripts/gdb/lunadbg/commands.py
b/lunaix-os/scripts/gdb/lunadbg/commands.py
new file mode 100644
(file)
index 0000000..
698ea85
--- /dev/null
+++ b/
lunaix-os/scripts/gdb/lunadbg/commands.py
@@ -0,0
+1,8
@@
+from .region_dump import MemoryRegionDump
+from .proc_table_dump import ProcessDump, ProcessTableDump
+
+
+def load_commands():
+ MemoryRegionDump()
+ ProcessTableDump()
+ ProcessDump()
\ No newline at end of file