diff options
author | Liming Gao <liming.gao@intel.com> | 2017-11-24 14:30:11 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2017-12-25 11:05:45 +0800 |
commit | ae7b6df816e913394a7f11264f24953658ff34ba (patch) | |
tree | 10906d07aa821e1aa531ee3048f3d946cd485cc2 /BaseTools/Source/Python/Workspace/WorkspaceCommon.py | |
parent | 309e37a22915dca12d3e5b914d8b3429f7624601 (diff) | |
download | edk2-ae7b6df816e913394a7f11264f24953658ff34ba.tar.gz edk2-ae7b6df816e913394a7f11264f24953658ff34ba.tar.bz2 edk2-ae7b6df816e913394a7f11264f24953658ff34ba.zip |
BaseTools: Support Structure PCD value assignment in DEC/DSC
https://bugzilla.tianocore.org/show_bug.cgi?id=542
This is pure BaseTools enhancement to support PCD with one structure.
User can specify PCD value based on its structure field.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/Workspace/WorkspaceCommon.py')
-rw-r--r-- | BaseTools/Source/Python/Workspace/WorkspaceCommon.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/BaseTools/Source/Python/Workspace/WorkspaceCommon.py b/BaseTools/Source/Python/Workspace/WorkspaceCommon.py index c224b8e0e6..67aa530526 100644 --- a/BaseTools/Source/Python/Workspace/WorkspaceCommon.py +++ b/BaseTools/Source/Python/Workspace/WorkspaceCommon.py @@ -15,6 +15,7 @@ from Common.Misc import sdict from Common.DataType import SUP_MODULE_USER_DEFINED
from BuildClassObject import LibraryClassObject
import Common.GlobalData as GlobalData
+from Workspace.BuildClassObject import StructurePcd
## Get all packages from platform for specified arch, target and toolchain
#
|