Reviewed-by: Yonghong Zhu <[email protected]> Best Regards, Zhu Yonghong
-----Original Message----- From: Feng, YunhuaX Sent: Tuesday, July 04, 2017 11:28 AM To: [email protected] Cc: Zhu, Yonghong <[email protected]>; Gao, Liming <[email protected]> Subject: [PATCH] BaseTools: Report Fd File Path in build log At the end of build, Report Fd image path in build log Cc: Liming Gao <[email protected]> Cc: Yonghong Zhu <[email protected]> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yunhua Feng <[email protected]> --- 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.12.2.windows.2 _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel

