Skip to content
Snippets Groups Projects
Commit 1450db14 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "lrdp-v2: check if kaslr_addr exists on the board"

parents 101a512f 68774e48
Branches
No related tags found
No related merge requests found
...@@ -1072,7 +1072,10 @@ class RamDump(): ...@@ -1072,7 +1072,10 @@ class RamDump():
self.hw_id = board.board_num self.hw_id = board.board_num
self.cpu_type = board.cpu self.cpu_type = board.cpu
self.imem_fname = board.imem_file_name self.imem_fname = board.imem_file_name
if hasattr(board, 'kaslr_addr'):
self.kaslr_addr = board.kaslr_addr self.kaslr_addr = board.kaslr_addr
else:
self.kaslr_addr = None
return True return True
def resolve_virt(self, virt_or_name): def resolve_virt(self, virt_or_name):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment