|
From: <gi...@us...> - 2011-12-13 05:47:32
|
Revision: 2466
http://edk2-buildtools.svn.sourceforge.net/edk2-buildtools/?rev=2466&view=rev
Author: gikidy
Date: 2011-12-13 05:47:26 +0000 (Tue, 13 Dec 2011)
Log Message:
-----------
Fix an issue of GenFds tool while generate FvNameGuid string under is 64-bit Linux as host machine OS.
Signed-off-by: gikidy
Reviewed-by: erictian
Modified Paths:
--------------
trunk/BaseTools/Source/Python/GenFds/Fv.py
Modified: trunk/BaseTools/Source/Python/GenFds/Fv.py
===================================================================
--- trunk/BaseTools/Source/Python/GenFds/Fv.py 2011-12-13 05:35:42 UTC (rev 2465)
+++ trunk/BaseTools/Source/Python/GenFds/Fv.py 2011-12-13 05:47:26 UTC (rev 2466)
@@ -316,7 +316,7 @@
Buffer += pack('B', int(ByteList[Index1], 16))
Guid = self.FvNameGuid.split('-')
- Buffer = pack('LHHBBBBBBBBL',
+ Buffer = pack('=LHHBBBBBBBBL',
int(Guid[0], 16),
int(Guid[1], 16),
int(Guid[2], 16),
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|