diff options
author | Liming Gao <liming.gao@intel.com> | 2017-12-22 20:07:54 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2017-12-25 11:05:48 +0800 |
commit | e651d06c5ed167e706e2dbe122ec0953a54033f3 (patch) | |
tree | e3e87c6190f829372feebf4809db6ad5614b4d48 /BaseTools/Source/Python/AutoGen | |
parent | 2b8a6c44e0deb508f79804dd5ff7156bc7e25493 (diff) | |
download | edk2-e651d06c5ed167e706e2dbe122ec0953a54033f3.tar.gz edk2-e651d06c5ed167e706e2dbe122ec0953a54033f3.tar.bz2 edk2-e651d06c5ed167e706e2dbe122ec0953a54033f3.zip |
BaseTools: Report Structure PCD value and SKU, DefaultStore info
https://bugzilla.tianocore.org/show_bug.cgi?id=706
Add Structure PCD support for Build report. Structure PCD field value described
in DEC/DSC will be display in build report. And, PCD value for each SKU and
Default store will also be shown in build report.
Contributed-under: TianoCore Contribution Agreement 1.1
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/AutoGen')
-rw-r--r-- | BaseTools/Source/Python/AutoGen/GenPcdDb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/AutoGen/GenPcdDb.py b/BaseTools/Source/Python/AutoGen/GenPcdDb.py index e3ab027501..fe1a598e41 100644 --- a/BaseTools/Source/Python/AutoGen/GenPcdDb.py +++ b/BaseTools/Source/Python/AutoGen/GenPcdDb.py @@ -1078,7 +1078,7 @@ def CreatePcdDatabasePhaseSpecificAutoGen (Platform, DynamicPcdList, Phase): }
- SkuObj = SkuClass(Platform.Platform.AvilableSkuIds, Platform.Platform.SkuIds)
+ SkuObj = SkuClass(Platform.Platform.SkuName, Platform.Platform.SkuIds)
Dict['SYSTEM_SKU_ID_VALUE'] = Platform.Platform.SkuIds[SkuObj.SystemSkuId][0]
Dict['PCD_INFO_FLAG'] = Platform.Platform.PcdInfoFlag
|