public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* Re: [PATCH] BaseTools: Report Fd File Path in build log
       [not found] <47C64442C08CCD4089DC43B6B5E46BC47D56EE@shsmsx102.ccr.corp.intel.com>
@ 2017-07-07  8:38 ` Zhu, Yonghong
  0 siblings, 0 replies; only message in thread
From: Zhu, Yonghong @ 2017-07-07  8:38 UTC (permalink / raw)
  To: Feng, YunhuaX, edk2-devel@lists.01.org; +Cc: Gao, Liming, Zhu, Yonghong

Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com> 

Best Regards,
Zhu Yonghong


-----Original Message-----
From: Feng, YunhuaX 
Sent: Tuesday, July 04, 2017 11:28 AM
To: edk2-devel@lists.01.org
Cc: Zhu, Yonghong <yonghong.zhu@intel.com>; Gao, Liming <liming.gao@intel.com>
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 <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Yunhua Feng <yunhuax.feng@intel.com>
---
 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



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-07-07  8:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <47C64442C08CCD4089DC43B6B5E46BC47D56EE@shsmsx102.ccr.corp.intel.com>
2017-07-07  8:38 ` [PATCH] BaseTools: Report Fd File Path in build log Zhu, Yonghong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox