BaseTools: Remove FdfParserLite.py from source since it is not used
Remove FdfParserLite.py from source code since it is not used. Cc: Liming Gao <liming.gao@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yunhua Feng <yunhuax.feng@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
This commit is contained in:
committed by
Yonghong Zhu
parent
e037e88cd8
commit
95cc496216
@@ -14,7 +14,7 @@
|
|||||||
##
|
##
|
||||||
# Import Modules
|
# Import Modules
|
||||||
#
|
#
|
||||||
from FdfParserLite import FdfParser
|
from GenFds.FdfParser import FdfParser
|
||||||
from Table.TableFdf import TableFdf
|
from Table.TableFdf import TableFdf
|
||||||
from CommonDataClass.DataClass import MODEL_FILE_FDF, MODEL_PCD, MODEL_META_DATA_COMPONENT
|
from CommonDataClass.DataClass import MODEL_FILE_FDF, MODEL_PCD, MODEL_META_DATA_COMPONENT
|
||||||
from String import NormPath
|
from String import NormPath
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -61,7 +61,6 @@ from Common.LongFilePathSupport import OpenLongFilePath as open
|
|||||||
from Capsule import EFI_CERT_TYPE_PKCS7_GUID
|
from Capsule import EFI_CERT_TYPE_PKCS7_GUID
|
||||||
from Capsule import EFI_CERT_TYPE_RSA2048_SHA256_GUID
|
from Capsule import EFI_CERT_TYPE_RSA2048_SHA256_GUID
|
||||||
from Common.RangeExpression import RangeExpression
|
from Common.RangeExpression import RangeExpression
|
||||||
from Common.FdfParserLite import FileExtensionPattern,TokenFindPattern
|
|
||||||
|
|
||||||
##define T_CHAR_SPACE ' '
|
##define T_CHAR_SPACE ' '
|
||||||
##define T_CHAR_NULL '\0'
|
##define T_CHAR_NULL '\0'
|
||||||
@@ -86,6 +85,8 @@ RegionSizeGuidPattern = re.compile("\s*(?P<base>\w+\.\w+)\s*\|\s*(?P<size>\w+\.\
|
|||||||
RegionOffsetPcdPattern = re.compile("\s*(?P<base>\w+\.\w+)\s*$")
|
RegionOffsetPcdPattern = re.compile("\s*(?P<base>\w+\.\w+)\s*$")
|
||||||
ShortcutPcdPattern = re.compile("\s*\w+\s*=\s*(?P<value>(?:0x|0X)?[a-fA-F0-9]+)\s*\|\s*(?P<name>\w+\.\w+)\s*")
|
ShortcutPcdPattern = re.compile("\s*\w+\s*=\s*(?P<value>(?:0x|0X)?[a-fA-F0-9]+)\s*\|\s*(?P<name>\w+\.\w+)\s*")
|
||||||
BaseAddrValuePattern = re.compile('^0[xX][0-9a-fA-F]+')
|
BaseAddrValuePattern = re.compile('^0[xX][0-9a-fA-F]+')
|
||||||
|
FileExtensionPattern = re.compile(r'([a-zA-Z][a-zA-Z0-9]*)')
|
||||||
|
TokenFindPattern = re.compile(r'([a-zA-Z0-9\-]+|\$\(TARGET\)|\*)_([a-zA-Z0-9\-]+|\$\(TOOL_CHAIN_TAG\)|\*)_([a-zA-Z0-9\-]+|\$\(ARCH\)|\*)')
|
||||||
|
|
||||||
AllIncludeFileList = []
|
AllIncludeFileList = []
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
## @file
|
## @file
|
||||||
# Windows makefile for Python tools build.
|
# Windows makefile for Python tools build.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 - 2016, Intel Corporation. All rights reserved.<BR>
|
# Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||||
# This program and the accompanying materials
|
# This program and the accompanying materials
|
||||||
# are licensed and made available under the terms and conditions of the BSD License
|
# are licensed and made available under the terms and conditions of the BSD License
|
||||||
# which accompanies this distribution. The full text of the license may be found at
|
# which accompanies this distribution. The full text of the license may be found at
|
||||||
@@ -45,7 +45,6 @@ COMMON_PYTHON=$(BASE_TOOLS_PATH)\Source\Python\Common\BuildToolError.py \
|
|||||||
$(BASE_TOOLS_PATH)\Source\Python\Common\EdkLogger.py \
|
$(BASE_TOOLS_PATH)\Source\Python\Common\EdkLogger.py \
|
||||||
$(BASE_TOOLS_PATH)\Source\Python\Common\Expression.py \
|
$(BASE_TOOLS_PATH)\Source\Python\Common\Expression.py \
|
||||||
$(BASE_TOOLS_PATH)\Source\Python\Common\FdfClassObject.py \
|
$(BASE_TOOLS_PATH)\Source\Python\Common\FdfClassObject.py \
|
||||||
$(BASE_TOOLS_PATH)\Source\Python\Common\FdfParserLite.py \
|
|
||||||
$(BASE_TOOLS_PATH)\Source\Python\Common\GlobalData.py \
|
$(BASE_TOOLS_PATH)\Source\Python\Common\GlobalData.py \
|
||||||
$(BASE_TOOLS_PATH)\Source\Python\Common\Identification.py \
|
$(BASE_TOOLS_PATH)\Source\Python\Common\Identification.py \
|
||||||
$(BASE_TOOLS_PATH)\Source\Python\Common\InfClassObject.py \
|
$(BASE_TOOLS_PATH)\Source\Python\Common\InfClassObject.py \
|
||||||
|
Reference in New Issue
Block a user