Skip to content
Snippets Groups Projects
Commit 76e41afd authored by Soumen Ghosh's avatar Soumen Ghosh
Browse files

lrdp-v2: vmlinux linux banner timestamp matching with ramdump, modified the string matching

	example: $6 = 0xffffff900fca <linux_banner> ...

Change-Id: I7fd098ea26d7e5c25590aa7c5d312a0545633686
parent 65038817
No related branches found
No related tags found
No related merge requests found
......@@ -302,6 +302,10 @@ class GdbMI(object):
match = re.search(r'^[$]\d+ = \\"(.*)(\\\\n\\")', result.lines[0])
if match:
return match.group(1)
else:
match = re.search(r'^[$]\d+ = 0x[0-9a-fA-F]+ .* \\"(.*)(\\\\n\\")', result.lines[0])
if match:
return match.group(1)
return None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment