ARM Packages: CRLF fixup
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org> Signed-off-by: Olivier Martin <olivier.martin@arm.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15241 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
committed by
oliviermartin
parent
9401d6f4b9
commit
e6f3ed4340
@@ -95,7 +95,7 @@ class DebugInfoTable:
|
||||
if edk2_debugger.is_aarch64(self.ec):
|
||||
section = firmware_volume.EfiSectionPE64(self.ec, debug_info[0])
|
||||
else:
|
||||
section = firmware_volume.EfiSectionPE32(self.ec, debug_info[0])
|
||||
section = firmware_volume.EfiSectionPE32(self.ec, debug_info[0])
|
||||
|
||||
try:
|
||||
edk2_debugger.load_symbol_from_file(self.ec, section.get_debug_filepath(), section.get_debug_elfbase(), verbose)
|
||||
@@ -151,13 +151,13 @@ class SystemTable:
|
||||
def get_configuration_table(self, conf_table_guid):
|
||||
if edk2_debugger.is_aarch64(self.ec):
|
||||
# Number of configuration Table entry
|
||||
conf_table_entry_count = self.ec.getMemoryService().readMemory32(self.system_table_base + 0x68)
|
||||
conf_table_entry_count = self.ec.getMemoryService().readMemory32(self.system_table_base + 0x68)
|
||||
|
||||
# Get location of the Configuration Table entries
|
||||
conf_table_offset = self.ec.getMemoryService().readMemory64(self.system_table_base + 0x70)
|
||||
else:
|
||||
# Number of configuration Table entry
|
||||
conf_table_entry_count = self.ec.getMemoryService().readMemory32(self.system_table_base + 0x40)
|
||||
conf_table_entry_count = self.ec.getMemoryService().readMemory32(self.system_table_base + 0x40)
|
||||
|
||||
# Get location of the Configuration Table entries
|
||||
conf_table_offset = self.ec.getMemoryService().readMemory32(self.system_table_base + 0x44)
|
||||
|
Reference in New Issue
Block a user