|
From: <lg...@us...> - 2012-09-27 02:47:49
|
Revision: 2551
http://edk2-buildtools.svn.sourceforge.net/edk2-buildtools/?rev=2551&view=rev
Author: lgao4
Date: 2012-09-27 02:47:43 +0000 (Thu, 27 Sep 2012)
Log Message:
-----------
Fix issue in Build report to support DynamicEx type PCD.
Signed-off-by: Liming Gao <lim...@in...>
Reviewed-by: Zeng, Yurui <yur...@in...>
Modified Paths:
--------------
trunk/BaseTools/Source/Python/build/BuildReport.py
Modified: trunk/BaseTools/Source/Python/build/BuildReport.py
===================================================================
--- trunk/BaseTools/Source/Python/build/BuildReport.py 2012-08-15 00:34:24 UTC (rev 2550)
+++ trunk/BaseTools/Source/Python/build/BuildReport.py 2012-09-27 02:47:43 UTC (rev 2551)
@@ -94,9 +94,9 @@
'Dynamic' : ('DYN', 'Dynamic'),
'DynamicHii' : ('DYNHII', 'Dynamic'),
'DynamicVpd' : ('DYNVPD', 'Dynamic'),
- 'DynamicEx' : ('DEX', 'Dynamic'),
- 'DynamicExHii' : ('DEXHII', 'Dynamic'),
- 'DynamicExVpd' : ('DEXVPD', 'Dynamic'),
+ 'DynamicEx' : ('DEX', 'DynamicEx'),
+ 'DynamicExHii' : ('DEXHII', 'DynamicEx'),
+ 'DynamicExVpd' : ('DEXVPD', 'DynamicEx'),
}
## The look up table to map module type to driver type
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|