From: oliviermartin Date: Mon, 22 Oct 2012 15:45:10 +0000 (+0000) Subject: ArmPlatformPkg/Scripts/Ds5: Added missing package declarations in Python scripts X-Git-Tag: edk2-stable201903~12934 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=d5c5ad419e0312b95e80eacf8f726cb21b5a56a2;hp=6e9ed5b80dc544de7a312fb729e3c200065e8221 ArmPlatformPkg/Scripts/Ds5: Added missing package declarations in Python scripts Signed-off-by: Olivier Martin git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13876 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/ArmPlatformPkg/Scripts/Ds5/firmware_volume.py b/ArmPlatformPkg/Scripts/Ds5/firmware_volume.py index 01f8597e5f..c4e02ece24 100644 --- a/ArmPlatformPkg/Scripts/Ds5/firmware_volume.py +++ b/ArmPlatformPkg/Scripts/Ds5/firmware_volume.py @@ -14,6 +14,8 @@ from arm_ds.debugger_v1 import DebugException import struct import string + +import edk2_debugger class EfiFileSection(object): EFI_SECTION_PE32 = 0x10 diff --git a/ArmPlatformPkg/Scripts/Ds5/system_table.py b/ArmPlatformPkg/Scripts/Ds5/system_table.py index f74554fa65..f489e466ad 100644 --- a/ArmPlatformPkg/Scripts/Ds5/system_table.py +++ b/ArmPlatformPkg/Scripts/Ds5/system_table.py @@ -12,9 +12,11 @@ from arm_ds.debugger_v1 import DebugException -import firmware_volume import struct +import edk2_debugger +import firmware_volume + class DebugInfoTable: CONST_DEBUG_INFO_TABLE_GUID = ( 0x49152E77L, 0x47641ADAL, 0xFE7AA2B7L, 0x8B5ED9FEL)