diff options
author | Feng, Bob C <bob.c.feng@intel.com> | 2018-01-23 11:34:45 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2018-01-25 18:08:07 +0800 |
commit | 8e011d83bbd7006919c00917fbdfaf7a60edae21 (patch) | |
tree | 36125d90add09ca93fd05a5e79c8ee2f6c8873bc /BaseTools/Source/Python/Workspace/MetaFileParser.py | |
parent | 841d86fe406ed6cf504c62b6838876a65cf8f7a0 (diff) | |
download | edk2-8e011d83bbd7006919c00917fbdfaf7a60edae21.tar.gz edk2-8e011d83bbd7006919c00917fbdfaf7a60edae21.tar.bz2 edk2-8e011d83bbd7006919c00917fbdfaf7a60edae21.zip |
BaseTools: Fixed some small issues
1. The structure pcd default value should use the default value under sku.
2. Incorrect VpdOffset value for those un-used in module Vpd
3. Add a checkpoint for Structure Pcd Name
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/Workspace/MetaFileParser.py')
-rw-r--r-- | BaseTools/Source/Python/Workspace/MetaFileParser.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/BaseTools/Source/Python/Workspace/MetaFileParser.py b/BaseTools/Source/Python/Workspace/MetaFileParser.py index d704809354..8f4b5e5cc1 100644 --- a/BaseTools/Source/Python/Workspace/MetaFileParser.py +++ b/BaseTools/Source/Python/Workspace/MetaFileParser.py @@ -1915,6 +1915,9 @@ class DecParser(MetaFileParser): if len(PcdNames) == 2:
self._CurrentStructurePcdName = ""
else:
+ if self._CurrentStructurePcdName != TAB_SPLIT.join(PcdNames[:2]):
+ EdkLogger.error('Parser', FORMAT_INVALID, "Pcd Name does not match: %s and %s " % (self._CurrentStructurePcdName , TAB_SPLIT.join(PcdNames[:2])),
+ File=self.MetaFile, Line=self._LineIndex + 1)
self._ValueList[1] = TAB_SPLIT.join(PcdNames[2:])
self._ValueList[2] = PcdTockens[1]
if not self._CurrentStructurePcdName:
|