From c82fc2b555285306904c9c1ed6524a85bee8841a Mon Sep 17 00:00:00 2001 From: Yunhua Feng Date: Tue, 4 Jul 2017 11:27:35 +0800 Subject: [PATCH 1/1] BaseTools: Report Fd File Path in build log At the end of build, Report Fd image path in build log Cc: Liming Gao Cc: Yonghong Zhu Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yunhua Feng Reviewed-by: Yonghong Zhu --- BaseTools/Source/Python/GenFds/Fd.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/BaseTools/Source/Python/GenFds/Fd.py b/BaseTools/Source/Python/GenFds/Fd.py index 0c06ff57dc..684b5cea88 100644 --- a/BaseTools/Source/Python/GenFds/Fd.py +++ b/BaseTools/Source/Python/GenFds/Fd.py @@ -52,7 +52,9 @@ class FD(FDClassObject): # # Print Information # - GenFdsGlobalVariable.InfLogger("Fd File Name:%s" %self.FdUiName) + FdFileName = os.path.join(GenFdsGlobalVariable.FvDir, self.FdUiName + '.fd') + GenFdsGlobalVariable.InfLogger("Fd File Name:%s (%s)" %(self.FdUiName, FdFileName)) + Offset = 0x00 for item in self.BlockSizeList: Offset = Offset + item[0] * item[1] @@ -125,11 +127,6 @@ class FD(FDClassObject): GenFdsGlobalVariable.VerboseLogger('Call each region\'s AddToBuffer function') RegionObj.AddToBuffer (FdBuffer, self.BaseAddress, self.BlockSizeList, self.ErasePolarity, GenFds.ImageBinDict, self.vtfRawDict, self.DefineVarDict) # - # Create a empty Fd file - # - GenFdsGlobalVariable.VerboseLogger ('Create an empty Fd file') - FdFileName = os.path.join(GenFdsGlobalVariable.FvDir,self.FdUiName + '.fd') - # # Write the buffer contents to Fd file # GenFdsGlobalVariable.VerboseLogger('Write the buffer contents to Fd file') -- 2.39.2