]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/Python/Eot/EotGlobalData.py
BaseTools: Eot - remove unused lists
[mirror_edk2.git] / BaseTools / Source / Python / Eot / EotGlobalData.py
index a70a60b81905915a94f4756e63942fd9750d589f..da224a7ee3e34ba990090cc90f709f4f7d439a87 100644 (file)
@@ -1,8 +1,8 @@
 ## @file\r
 # This file is used to save global datas\r
 #\r
-# Copyright (c) 2008 - 2010, Intel Corporation\r
-# All rights reserved. This program and the accompanying materials\r
+# Copyright (c) 2008 - 2014, Intel Corporation. All rights reserved.<BR>\r
+# This program and the accompanying materials\r
 # are licensed and made available under the terms and conditions of the BSD License\r
 # which accompanies this distribution.  The full text of the license may be found at\r
 # http://opensource.org/licenses/bsd-license.php\r
@@ -11,7 +11,8 @@
 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
 #\r
 \r
-from Common.Misc import sdict\r
+from collections import OrderedDict\r
+from Common.LongFilePathSupport import OpenLongFilePath as open\r
 \r
 gEFI_SOURCE = ''\r
 gEDK_SOURCE = ''\r
@@ -69,11 +70,7 @@ gSOURCE_FILES = 'Log_SourceFiles.log'
 gOP_SOURCE_FILES = open(gSOURCE_FILES, 'w+')\r
 \r
 # Dict for GUID found in DEC files\r
-gGuidDict = sdict()\r
-\r
-# Dict for hard coded GUID Macros\r
-# {GuidName : [GuidMacro : GuidValue]}\r
-gGuidMacroDict = sdict()\r
+gGuidDict = dict()\r
 \r
 # Dict for PPI\r
 gPpiList = {}\r
@@ -82,12 +79,12 @@ gPpiList = {}
 gProtocolList = {}\r
 \r
 # Dict for consumed PPI function calling\r
-gConsumedPpiLibrary = sdict()\r
+gConsumedPpiLibrary = OrderedDict()\r
 gConsumedPpiLibrary['EfiCommonLocateInterface'] = 0\r
 gConsumedPpiLibrary['PeiServicesLocatePpi'] = 0\r
 \r
 # Dict for produced PROTOCOL function calling\r
-gProducedProtocolLibrary = sdict()\r
+gProducedProtocolLibrary = OrderedDict()\r
 gProducedProtocolLibrary['RegisterEsalClass'] = 0\r
 gProducedProtocolLibrary['CoreInstallProtocolInterface'] = 1\r
 gProducedProtocolLibrary['CoreInstallMultipleProtocolInterfaces'] = -1\r
@@ -98,41 +95,12 @@ gProducedProtocolLibrary['LibInstallProtocolInterfaces'] = 1
 gProducedProtocolLibrary['LibReinstallProtocolInterfaces'] = 1\r
 \r
 # Dict for consumed PROTOCOL function calling\r
-gConsumedProtocolLibrary = sdict()\r
+gConsumedProtocolLibrary = OrderedDict()\r
 gConsumedProtocolLibrary['EfiHandleProtocol'] = 0\r
 gConsumedProtocolLibrary['EfiLocateProtocolHandleBuffers'] = 0\r
 gConsumedProtocolLibrary['EfiLocateProtocolInterface'] = 0\r
 gConsumedProtocolLibrary['EfiHandleProtocol'] = 1\r
 \r
 # Dict for callback PROTOCOL function callling\r
-gCallbackProtocolLibrary = sdict()\r
+gCallbackProtocolLibrary = OrderedDict()\r
 gCallbackProtocolLibrary['EfiRegisterProtocolCallback'] = 2\r
-\r
-# Dict for ARCH PROTOCOL\r
-gArchProtocols = ['gEfiBdsArchProtocolGuid',\r
-                  'gEfiCapsuleArchProtocolGuid',\r
-                  'gEfiCpuArchProtocolGuid',  #5053697e-2cbc-4819-90d9-0580deee5754\r
-                  'gEfiMetronomeArchProtocolGuid',\r
-                  'gEfiMonotonicCounterArchProtocolGuid',\r
-                  'gEfiRealTimeClockArchProtocolGuid',\r
-                  'gEfiResetArchProtocolGuid',\r
-                  'gEfiRuntimeArchProtocolGuid',\r
-                  'gEfiSecurityArchProtocolGuid',\r
-                  'gEfiStatusCodeRuntimeProtocolGuid',\r
-                  'gEfiTimerArchProtocolGuid',\r
-                  'gEfiVariableArchProtocolGuid',\r
-                  'gEfiVariableWriteArchProtocolGuid',\r
-                  'gEfiWatchdogTimerArchProtocolGuid']\r
-gArchProtocolGuids = ['665e3ff6-46cc-11d4-9a38-0090273fc14d',\r
-                      '26baccb1-6f42-11d4-bce7-0080c73c8881',\r
-                      '26baccb2-6f42-11d4-bce7-0080c73c8881',\r
-                      '1da97072-bddc-4b30-99f1-72a0b56fff2a',\r
-                      '27cfac87-46cc-11d4-9a38-0090273fc14d',\r
-                      '27cfac88-46cc-11d4-9a38-0090273fc14d',\r
-                      'b7dfb4e1-052f-449f-87be-9818fc91b733',\r
-                      'a46423e3-4617-49f1-b9ff-d1bfa9115839',\r
-                      'd2b2b828-0826-48a7-b3df-983c006024f0',\r
-                      '26baccb3-6f42-11d4-bce7-0080c73c8881',\r
-                      '1e5668e2-8481-11d4-bcf1-0080c73c8881',\r
-                      '6441f818-6362-4e44-b570-7dba31dd2453',\r
-                      '665e3ff5-46cc-11d4-9a38-0090273fc14d']\r