mirror of https://github.com/acidanthera/audk.git
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:
parent
719fd85c73
commit
9062ab4787
|
@ -725,7 +725,7 @@ def SplitFspBin (fspfile, outdir, nametemplate):
|
|||
fspname, ext = os.path.splitext(os.path.basename(nametemplate))
|
||||
filename = os.path.join(outdir, fspname + '_' + fsp.Type + ext)
|
||||
hfsp = open(filename, 'wb')
|
||||
print ("Ceate FSP component file '%s'" % filename)
|
||||
print ("Create FSP component file '%s'" % filename)
|
||||
for fvidx in fsp.FvIdxList:
|
||||
fv = fd.FvList[fvidx]
|
||||
hfsp.write(fv.FvData)
|
||||
|
|
Loading…
Reference in New Issue