aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/gdb/linux/proc.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/gdb/linux/proc.py')
-rw-r--r--scripts/gdb/linux/proc.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/gdb/linux/proc.py b/scripts/gdb/linux/proc.py
index 8a733dd99580..6e6709c1830c 100644
--- a/scripts/gdb/linux/proc.py
+++ b/scripts/gdb/linux/proc.py
@@ -14,6 +14,19 @@
14import gdb 14import gdb
15 15
16 16
17class LxCmdLine(gdb.Command):
18 """ Report the Linux Commandline used in the current kernel.
19 Equivalent to cat /proc/cmdline on a running target"""
20
21 def __init__(self):
22 super(LxCmdLine, self).__init__("lx-cmdline", gdb.COMMAND_DATA)
23
24 def invoke(self, arg, from_tty):
25 gdb.write(gdb.parse_and_eval("saved_command_line").string() + "\n")
26
27LxCmdLine()
28
29
17class LxVersion(gdb.Command): 30class LxVersion(gdb.Command):
18 """ Report the Linux Version of the current kernel. 31 """ Report the Linux Version of the current kernel.
19 Equivalent to cat /proc/version on a running target""" 32 Equivalent to cat /proc/version on a running target"""