mirror of https://github.com/acidanthera/audk.git
BaseTools: FfsInfStatement - remove unused function
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>
This commit is contained in:
parent
227dbb1190
commit
80bfbd3e83
|
@ -1065,27 +1065,6 @@ class FfsInfStatement(FfsInfStatementClassObject):
|
||||||
)
|
)
|
||||||
return FfsOutput
|
return FfsOutput
|
||||||
|
|
||||||
## __GetGenFfsCmdParameter__() method
|
|
||||||
#
|
|
||||||
# Create parameter string for GenFfs
|
|
||||||
#
|
|
||||||
# @param Rule The rule object used to generate section
|
|
||||||
# @retval tuple (FileType, Fixed, CheckSum, Alignment)
|
|
||||||
#
|
|
||||||
@staticmethod
|
|
||||||
def __GetGenFfsCmdParameter__(Rule):
|
|
||||||
result = tuple()
|
|
||||||
result += ('-t', Ffs.Ffs.FdfFvFileTypeToFileType[Rule.FvFileType])
|
|
||||||
if Rule.Fixed != False:
|
|
||||||
result += ('-x',)
|
|
||||||
if Rule.CheckSum != False:
|
|
||||||
result += ('-s',)
|
|
||||||
|
|
||||||
if Rule.Alignment is not None and Rule.Alignment != '':
|
|
||||||
result += ('-a', Rule.Alignment)
|
|
||||||
|
|
||||||
return result
|
|
||||||
|
|
||||||
## __GetBuildOutputMapFileVfrUniInfo() method
|
## __GetBuildOutputMapFileVfrUniInfo() method
|
||||||
#
|
#
|
||||||
# Find the offset of UNI/INF object offset in the EFI image file.
|
# Find the offset of UNI/INF object offset in the EFI image file.
|
||||||
|
|
Loading…
Reference in New Issue