aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Griffin <peter.griffin@linaro.org>2016-10-18 15:55:27 +0100
committerPeter Griffin <peter.griffin@linaro.org>2016-10-18 15:58:05 +0100
commit4bef5af624af6686f33576f0799000d725d81908 (patch)
tree428d14c6537c95d95b52bb6c7a62c068de6057d0
parent62451e317df42431560722e417fb930c5e9bc055 (diff)
scripts/gdb: fixup some pep8 errors in proc.pylx-fdtdump
proc.py:22:1: E302 expected 2 blank lines, found 1 proc.py:200:1: E302 expected 2 blank lines, found 1 Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
-rw-r--r--scripts/gdb/linux/proc.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/gdb/linux/proc.py b/scripts/gdb/linux/proc.py
index f20fcfadb804..2d6f74e6391d 100644
--- a/scripts/gdb/linux/proc.py
+++ b/scripts/gdb/linux/proc.py
@@ -18,6 +18,7 @@ from linux import tasks
from linux import lists
from struct import *
+
class LxCmdLine(gdb.Command):
""" Report the Linux Commandline used in the current kernel.
Equivalent to cat /proc/cmdline on a running target"""
@@ -196,6 +197,7 @@ values of that process namespace"""
LxMounts()
+
class LxFdtDump(gdb.Command):
"""Output Flattened Device Tree header and dump FDT blob to a file
Equivalent to 'cat /proc/fdt > fdtdump.dtb' on a running target"""