BaseTools: Fix the bug that same region print twice in the build log
This patch fixed the bug that same region print twice in the build log. Cc: Liming Gao <liming.gao@intel.com> 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:
@ -1,7 +1,7 @@
|
|||||||
## @file
|
## @file
|
||||||
# process FD generation
|
# process FD generation
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
|
# Copyright (c) 2007 - 2017, Intel Corporation. All rights reserved.<BR>
|
||||||
#
|
#
|
||||||
# This program and the accompanying materials
|
# This program and the accompanying materials
|
||||||
# are licensed and made available under the terms and conditions of the BSD License
|
# are licensed and made available under the terms and conditions of the BSD License
|
||||||
@ -67,6 +67,12 @@ class FD(FDClassObject):
|
|||||||
GenFdsGlobalVariable.VerboseLogger('################### Gen VTF ####################')
|
GenFdsGlobalVariable.VerboseLogger('################### Gen VTF ####################')
|
||||||
self.GenVtfFile()
|
self.GenVtfFile()
|
||||||
|
|
||||||
|
HasCapsuleRegion = False
|
||||||
|
for RegionObj in self.RegionList:
|
||||||
|
if RegionObj.RegionType == 'CAPSULE':
|
||||||
|
HasCapsuleRegion = True
|
||||||
|
break
|
||||||
|
if HasCapsuleRegion:
|
||||||
TempFdBuffer = StringIO.StringIO('')
|
TempFdBuffer = StringIO.StringIO('')
|
||||||
PreviousRegionStart = -1
|
PreviousRegionStart = -1
|
||||||
PreviousRegionSize = 1
|
PreviousRegionSize = 1
|
||||||
|
Reference in New Issue
Block a user