summaryrefslogtreecommitdiffstats
path: root/IntelFsp2Pkg
diff options
context:
space:
mode:
authorChasel, Chiu <chasel.chiu@intel.com>2018-09-21 07:32:51 +0800
committerChasel, Chiu <chasel.chiu@intel.com>2018-09-21 07:38:09 +0800
commit9062ab47870ea728307e32cdd939586a4ec67fc6 (patch)
treea800059d955e6c6af6252446e90161d8e1e15b49 /IntelFsp2Pkg
parent719fd85c7396907e6d48b7203fec2f401e805b87 (diff)
downloadedk2-9062ab47870ea728307e32cdd939586a4ec67fc6.tar.gz
edk2-9062ab47870ea728307e32cdd939586a4ec67fc6.tar.bz2
edk2-9062ab47870ea728307e32cdd939586a4ec67fc6.zip
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>
Diffstat (limited to 'IntelFsp2Pkg')
-rw-r--r--IntelFsp2Pkg/Tools/SplitFspBin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/IntelFsp2Pkg/Tools/SplitFspBin.py b/IntelFsp2Pkg/Tools/SplitFspBin.py
index 9b18720307..5d56aebbd7 100644
--- a/IntelFsp2Pkg/Tools/SplitFspBin.py
+++ b/IntelFsp2Pkg/Tools/SplitFspBin.py
@@ -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)