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
@@ -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