Skip to content
Snippets Groups Projects
Commit 237ff494 authored by Shivendra Pratap's avatar Shivendra Pratap Committed by Gerrit - the friendly Code Review server
Browse files

Fix parser for 32 bit support


Fix 32 bit parsing to use kernel_version

Change-Id: I3bea7f86a6f52374064c02ca57f416dbfbe7dcf3
Signed-off-by: default avatarShivendra Pratap <spratap@codeaurora.org>
parent ccf45139
Branches
No related tags found
No related merge requests found
......@@ -165,8 +165,8 @@ class RamDump():
self.unwind_table.append((a, b, start + 8 * i))
i += 1
ver = ramdump.version
if re.search('3.0.\d', ver) is not None:
ver = ramdump.get_kernel_version()
if (ver[0] == 3 and ver[1] == 0):
self.search_idx = self.search_idx_3_0
else:
self.search_idx = self.search_idx_3_4
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment