X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=IntelFsp2Pkg%2FTools%2FSplitFspBin.py;h=2458231d090d07ae4ca2f7fa0f8a405e819c8ca0;hb=9d73c5608d228413d999f9148ba3012491c1d995;hp=9b1872030720886c60db1537d811e018e6bd6af8;hpb=cc0d998b8ba08819f7a7e18219d95ba3b6aba81f;p=mirror_edk2.git diff --git a/IntelFsp2Pkg/Tools/SplitFspBin.py b/IntelFsp2Pkg/Tools/SplitFspBin.py index 9b18720307..2458231d09 100644 --- a/IntelFsp2Pkg/Tools/SplitFspBin.py +++ b/IntelFsp2Pkg/Tools/SplitFspBin.py @@ -1,13 +1,7 @@ ## @ FspTool.py # # Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.
-# This program and the accompanying materials are licensed and made available under -# the terms and conditions of the BSD License that accompanies this distribution. -# The full text of the license may be found at -# http://opensource.org/licenses/bsd-license.php. -# -# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. +# SPDX-License-Identifier: BSD-2-Clause-Patent # ## @@ -725,7 +719,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)