diff options
author | Yingke Liu <yingke.d.liu@intel.com> | 2015-07-28 05:53:08 +0000 |
---|---|---|
committer | yingke <yingke@Edk2> | 2015-07-28 05:53:08 +0000 |
commit | aaf8aa7b2cd6e5ee533aa622d72391226069e0c3 (patch) | |
tree | 0a9945f851b06048b82e7ce4d9fe2f8b6d593bbb /BaseTools/Source/Python/CommonDataClass/FdfClass.py | |
parent | 161b8359a8e0af1ac944f115de8d345aa4a61b9c (diff) | |
download | edk2-platforms-aaf8aa7b2cd6e5ee533aa622d72391226069e0c3.tar.xz |
BaseTools: Add a keyword FvNameString in FDF
The keyword with value TRUE OR FALSE is used to
indicate whether the FV UI name is included in
FV EXT header as a entry or not.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Yingke Liu <yingke.d.liu@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18090 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BaseTools/Source/Python/CommonDataClass/FdfClass.py')
-rw-r--r-- | BaseTools/Source/Python/CommonDataClass/FdfClass.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/BaseTools/Source/Python/CommonDataClass/FdfClass.py b/BaseTools/Source/Python/CommonDataClass/FdfClass.py index f758d35ba1..96a630f4d2 100644 --- a/BaseTools/Source/Python/CommonDataClass/FdfClass.py +++ b/BaseTools/Source/Python/CommonDataClass/FdfClass.py @@ -58,6 +58,7 @@ class FvClassObject: # FvAttributeDict[attribute] = TRUE/FALSE (1/0)
self.FvAttributeDict = {}
self.FvNameGuid = None
+ self.FvNameString = None
self.AprioriSectionList = []
self.FfsList = []
self.BsBaseAddress = None
|