IntelFsp2Pkg: Fix typo in SplitFspBin
Signed-off-by: Patrick Georgi <pgeorgi@google.com> Contributed-under: TianoCore Contribution Agreement 1.1 Reviewed-by: Nate DeSimone <nathaniel.l.desimone@intel.com> Reviewed-by: Chasel Chiu <chasel.chiu@intel.com>
This commit is contained in:
@@ -725,7 +725,7 @@ def SplitFspBin (fspfile, outdir, nametemplate):
|
|||||||
fspname, ext = os.path.splitext(os.path.basename(nametemplate))
|
fspname, ext = os.path.splitext(os.path.basename(nametemplate))
|
||||||
filename = os.path.join(outdir, fspname + '_' + fsp.Type + ext)
|
filename = os.path.join(outdir, fspname + '_' + fsp.Type + ext)
|
||||||
hfsp = open(filename, 'wb')
|
hfsp = open(filename, 'wb')
|
||||||
print ("Ceate FSP component file '%s'" % filename)
|
print ("Create FSP component file '%s'" % filename)
|
||||||
for fvidx in fsp.FvIdxList:
|
for fvidx in fsp.FvIdxList:
|
||||||
fv = fd.FvList[fvidx]
|
fv = fd.FvList[fvidx]
|
||||||
hfsp.write(fv.FvData)
|
hfsp.write(fv.FvData)
|
||||||
|
Reference in New Issue
Block a user