summaryrefslogtreecommitdiffstats
path: root/ArmPlatformPkg/Scripts
diff options
context:
space:
mode:
authoroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2012-10-22 15:45:10 +0000
committeroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2012-10-22 15:45:10 +0000
commitd5c5ad419e0312b95e80eacf8f726cb21b5a56a2 (patch)
tree318a5bf95ee26e2e7036706c6c105c8123440c3b /ArmPlatformPkg/Scripts
parent6e9ed5b80dc544de7a312fb729e3c200065e8221 (diff)
downloadedk2-d5c5ad419e0312b95e80eacf8f726cb21b5a56a2.tar.gz
edk2-d5c5ad419e0312b95e80eacf8f726cb21b5a56a2.tar.bz2
edk2-d5c5ad419e0312b95e80eacf8f726cb21b5a56a2.zip
ArmPlatformPkg/Scripts/Ds5: Added missing package declarations in Python scripts
Signed-off-by: Olivier Martin <olivier.martin@arm.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13876 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPlatformPkg/Scripts')
-rw-r--r--ArmPlatformPkg/Scripts/Ds5/firmware_volume.py2
-rw-r--r--ArmPlatformPkg/Scripts/Ds5/system_table.py4
2 files changed, 5 insertions, 1 deletions
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)