diff options
author | Chasel, Chiu <chasel.chiu@intel.com> | 2018-09-21 07:32:51 +0800 |
---|---|---|
committer | Chasel, Chiu <chasel.chiu@intel.com> | 2018-09-21 07:38:09 +0800 |
commit | 9062ab47870ea728307e32cdd939586a4ec67fc6 (patch) | |
tree | a800059d955e6c6af6252446e90161d8e1e15b49 /IntelFsp2Pkg/Tools | |
parent | 719fd85c7396907e6d48b7203fec2f401e805b87 (diff) | |
download | edk2-9062ab47870ea728307e32cdd939586a4ec67fc6.tar.gz |
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/Tools')
-rw-r--r-- | IntelFsp2Pkg/Tools/SplitFspBin.py | 2 |
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)
|