|
From: <lg...@us...> - 2010-02-08 09:05:19
|
Revision: 1853
http://edk2-buildtools.svn.sourceforge.net/edk2-buildtools/?rev=1853&view=rev
Author: lgao4
Date: 2010-02-08 09:05:12 +0000 (Mon, 08 Feb 2010)
Log Message:
-----------
Update ImageSize to align 4K page size for load module at fix address feature.
Modified Paths:
--------------
trunk/BaseTools/Source/Python/build/build.py
Modified: trunk/BaseTools/Source/Python/build/build.py
===================================================================
--- trunk/BaseTools/Source/Python/build/build.py 2010-02-08 07:06:35 UTC (rev 1852)
+++ trunk/BaseTools/Source/Python/build/build.py 2010-02-08 09:05:12 UTC (rev 1853)
@@ -663,6 +663,7 @@
self.BaseName = BaseName
self.Guid = Guid
self.OutpuDir = OutpuDir
+ ImageClass.Size = (ImageClass.Size / 0x1000 + 1) * 0x1000
self.Image = ImageClass
## The class implementing the EDK2 build process
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|