BaseTools: Fix two cases that use GUID CName as PCD Value
1. use CName format in components section: [Components] TestPkg/TestDriver.inf { <PcdsFixedAtBuild> PcdToken.PcdName |{GUID(TestGuid)}|VOID*|16 } 2. Use Guid CName format in INF and the Guid is defined in the DEC file but not write in driver's [Guids] section. PcdToken.PcdName | {GUID(TestGuid)} Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
@ -410,7 +410,8 @@ class WorkspaceAutoGen(AutoGen):
|
|||||||
# apply SKU and inject PCDs from Flash Definition file
|
# apply SKU and inject PCDs from Flash Definition file
|
||||||
for Arch in self.ArchList:
|
for Arch in self.ArchList:
|
||||||
Platform = self.BuildDatabase[self.MetaFile, Arch, Target, Toolchain]
|
Platform = self.BuildDatabase[self.MetaFile, Arch, Target, Toolchain]
|
||||||
|
PlatformPcds = Platform.Pcds
|
||||||
|
self._GuidDict = Platform._GuidDict
|
||||||
SourcePcdDict = {'DynamicEx':set(), 'PatchableInModule':set(),'Dynamic':set(),'FixedAtBuild':set()}
|
SourcePcdDict = {'DynamicEx':set(), 'PatchableInModule':set(),'Dynamic':set(),'FixedAtBuild':set()}
|
||||||
BinaryPcdDict = {'DynamicEx':set(), 'PatchableInModule':set()}
|
BinaryPcdDict = {'DynamicEx':set(), 'PatchableInModule':set()}
|
||||||
SourcePcdDict_Keys = SourcePcdDict.keys()
|
SourcePcdDict_Keys = SourcePcdDict.keys()
|
||||||
@ -2790,7 +2791,7 @@ class ModuleAutoGen(AutoGen):
|
|||||||
|
|
||||||
self.Workspace = Workspace
|
self.Workspace = Workspace
|
||||||
self.WorkspaceDir = Workspace.WorkspaceDir
|
self.WorkspaceDir = Workspace.WorkspaceDir
|
||||||
|
self._GuidDict = Workspace._GuidDict
|
||||||
self.MetaFile = ModuleFile
|
self.MetaFile = ModuleFile
|
||||||
self.PlatformInfo = PlatformAutoGen(Workspace, PlatformFile, Target, Toolchain, Arch)
|
self.PlatformInfo = PlatformAutoGen(Workspace, PlatformFile, Target, Toolchain, Arch)
|
||||||
|
|
||||||
|
@ -1050,6 +1050,7 @@ class InfBuildData(ModuleBuildClassObject):
|
|||||||
#
|
#
|
||||||
# "FixedAtBuild", "PatchableInModule", "FeatureFlag", "Dynamic", "DynamicEx"
|
# "FixedAtBuild", "PatchableInModule", "FeatureFlag", "Dynamic", "DynamicEx"
|
||||||
#
|
#
|
||||||
|
self.Guids.update(Package.Guids)
|
||||||
PcdType = self._PCD_TYPE_STRING_[Type]
|
PcdType = self._PCD_TYPE_STRING_[Type]
|
||||||
if Type == MODEL_PCD_DYNAMIC:
|
if Type == MODEL_PCD_DYNAMIC:
|
||||||
Pcd.Pending = True
|
Pcd.Pending = True
|
||||||
|
Reference in New Issue
Block a user