diff options
author | Jaben Carsey <jaben.carsey@intel.com> | 2018-05-24 22:17:53 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2018-05-28 09:17:38 +0800 |
commit | e95a0dfb46339d459add8af848d5042ec6ff9a8d (patch) | |
tree | f20907c9c4032186f715d490dd4f73b0299caf0d /BaseTools/Source/Python/Eot/EotGlobalData.py | |
parent | efa88d51da7163200f13dfc796a328847c45a058 (diff) | |
download | edk2-e95a0dfb46339d459add8af848d5042ec6ff9a8d.tar.gz edk2-e95a0dfb46339d459add8af848d5042ec6ff9a8d.tar.bz2 edk2-e95a0dfb46339d459add8af848d5042ec6ff9a8d.zip |
BaseTools: Add missing content to EOT tool.
Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/Eot/EotGlobalData.py')
-rw-r--r-- | BaseTools/Source/Python/Eot/EotGlobalData.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/BaseTools/Source/Python/Eot/EotGlobalData.py b/BaseTools/Source/Python/Eot/EotGlobalData.py index a9f51189c1..cb6a940ab8 100644 --- a/BaseTools/Source/Python/Eot/EotGlobalData.py +++ b/BaseTools/Source/Python/Eot/EotGlobalData.py @@ -65,6 +65,9 @@ gGuidDict = dict() # Dict for PROTOCOL
gProtocolList = {}
+# Dict for PPI
+gPpiList = {}
+
# Dict for consumed PPI function calling
gConsumedPpiLibrary = OrderedDict()
@@ -92,3 +95,17 @@ gConsumedProtocolLibrary['EfiHandleProtocol'] = 1 # Dict for callback PROTOCOL function callling
gCallbackProtocolLibrary = OrderedDict()
gCallbackProtocolLibrary['EfiRegisterProtocolCallback'] = 2
+
+gArchProtocolGuids = {'665e3ff6-46cc-11d4-9a38-0090273fc14d',
+ '26baccb1-6f42-11d4-bce7-0080c73c8881',
+ '26baccb2-6f42-11d4-bce7-0080c73c8881',
+ '1da97072-bddc-4b30-99f1-72a0b56fff2a',
+ '27cfac87-46cc-11d4-9a38-0090273fc14d',
+ '27cfac88-46cc-11d4-9a38-0090273fc14d',
+ 'b7dfb4e1-052f-449f-87be-9818fc91b733',
+ 'a46423e3-4617-49f1-b9ff-d1bfa9115839',
+ 'd2b2b828-0826-48a7-b3df-983c006024f0',
+ '26baccb3-6f42-11d4-bce7-0080c73c8881',
+ '1e5668e2-8481-11d4-bcf1-0080c73c8881',
+ '6441f818-6362-4e44-b570-7dba31dd2453',
+ '665e3ff5-46cc-11d4-9a38-0090273fc14d'}
|