From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 007F421A0480F for ; Mon, 24 Apr 2017 10:49:49 -0700 (PDT) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Apr 2017 10:49:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,245,1488873600"; d="scan'208";a="80378343" Received: from yzhan76-mobl2.amr.corp.intel.com (HELO localhost) ([10.254.18.56]) by orsmga004.jf.intel.com with ESMTP; 24 Apr 2017 10:49:48 -0700 MIME-Version: 1.0 To: Leif Lindholm , edk2-devel@lists.01.org Message-ID: <149305618825.29360.17825465421115331251@jljusten-skl> From: Jordan Justen In-Reply-To: <20170424094308.27102-1-leif.lindholm@linaro.org> Cc: Andrew Fish , Prince Agyeman , David Wei References: <20170424094308.27102-1-leif.lindholm@linaro.org> User-Agent: alot/0.5.1 Date: Mon, 24 Apr 2017 10:49:48 -0700 Subject: Re: [PATCH] CorebootModulePkg, EmulatorPkg, Vlv2TbltDevicePkg: .inf whitespace fixes X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Apr 2017 17:49:50 -0000 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable On 2017-04-24 02:43:08, Leif Lindholm wrote: > Incorrect line endings, trailing spaces and missing line break at end > of file. > = > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Leif Lindholm > --- > = > This addresses only issues found when hacking on some scripts for > sanity checking .inf files. > = > Since trivial[1], would prefer not to split into one patch per > package. > = > [1] git diff -w --word-diff-regex=3D[^[:space:]] HEAD~1 > does not generate any output. Also: git diff --ignore-space-at-eol HEAD~ Reviewed-by: Jordan Justen > = > CorebootModulePkg/Library/BaseSerialPortLib16550/BaseSerialPortLib16550.= inf | 96 ++++++++++++------------ > CorebootModulePkg/Library/CbPlatformSupportLibNull/CbPlatformSupportLibN= ull.inf | 70 +++++++++--------- > CorebootModulePkg/SataControllerDxe/SataControllerDxe.inf = | 98 ++++++++++++------------ > EmulatorPkg/Library/DxeEmuPeCoffExtraActionLib/DxeEmuPeCoffExtraActionLi= b.inf | 96 ++++++++++++------------ > EmulatorPkg/Library/PeiEmuPeCoffExtraActionLib/PeiEmuPeCoffExtraActionLi= b.inf | 98 ++++++++++++------------ > EmulatorPkg/Library/SmbiosLib/SmbiosLib.inf = | 94 ++++++++++++------------ > Vlv2TbltDevicePkg/PlatformInitPei/PlatformInitPei.inf = | 18 ++--- > Vlv2TbltDevicePkg/SmBiosMiscDxe/SmBiosMiscDxe.inf = | 290 ++++++++++++++++++++++++++++++++++++-------------------------= ----------- > 8 files changed, 430 insertions(+), 430 deletions(-) > = > diff --git a/CorebootModulePkg/Library/BaseSerialPortLib16550/BaseSerialP= ortLib16550.inf b/CorebootModulePkg/Library/BaseSerialPortLib16550/BaseSeri= alPortLib16550.inf > index cd758ae4bf..77075ccc95 100644 > --- a/CorebootModulePkg/Library/BaseSerialPortLib16550/BaseSerialPortLib1= 6550.inf > +++ b/CorebootModulePkg/Library/BaseSerialPortLib16550/BaseSerialPortLib1= 6550.inf > @@ -1,48 +1,48 @@ > -## @file > -# SerialPortLib instance for 16550 UART. > -# > -# Copyright (c) 2006 - 2015, 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 > -# which accompanies this distribution. The full text of the license ma= y 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. > -# > -## > - > -[Defines] > - INF_VERSION =3D 0x00010005 > - BASE_NAME =3D BaseSerialPortLib16550 > - MODULE_UNI_FILE =3D BaseSerialPortLib16550.uni > - FILE_GUID =3D 9E7C00CF-355A-4d4e-BF60-0428CFF95540 > - MODULE_TYPE =3D BASE > - VERSION_STRING =3D 1.1 > - LIBRARY_CLASS =3D SerialPortLib > - > -[Packages] > - MdePkg/MdePkg.dec > - MdeModulePkg/MdeModulePkg.dec > - > -[LibraryClasses] > - PcdLib > - IoLib > - PlatformHookLib > - PciLib > - > -[Sources] > - BaseSerialPortLib16550.c > - > -[Pcd] > - gEfiMdeModulePkgTokenSpaceGuid.PcdSerialUseMmio ## CON= SUMES > - gEfiMdeModulePkgTokenSpaceGuid.PcdSerialUseHardwareFlowControl ## CON= SUMES > - gEfiMdeModulePkgTokenSpaceGuid.PcdSerialDetectCable ## SOM= ETIMES_CONSUMES > - gEfiMdeModulePkgTokenSpaceGuid.PcdSerialRegisterBase ## CON= SUMES > - gEfiMdeModulePkgTokenSpaceGuid.PcdSerialBaudRate ## CON= SUMES > - gEfiMdeModulePkgTokenSpaceGuid.PcdSerialLineControl ## CON= SUMES > - gEfiMdeModulePkgTokenSpaceGuid.PcdSerialFifoControl ## CON= SUMES > - gEfiMdeModulePkgTokenSpaceGuid.PcdSerialClockRate ## CON= SUMES > - gEfiMdeModulePkgTokenSpaceGuid.PcdSerialPciDeviceInfo ## CON= SUMES > - gEfiMdeModulePkgTokenSpaceGuid.PcdSerialExtendedTxFifoSize ## CON= SUMES > - gEfiMdeModulePkgTokenSpaceGuid.PcdSerialRegisterStride ## CON= SUMES > +## @file > +# SerialPortLib instance for 16550 UART. > +# > +# Copyright (c) 2006 - 2015, 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 > +# which accompanies this distribution. The full text of the license ma= y 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. > +# > +## > + > +[Defines] > + INF_VERSION =3D 0x00010005 > + BASE_NAME =3D BaseSerialPortLib16550 > + MODULE_UNI_FILE =3D BaseSerialPortLib16550.uni > + FILE_GUID =3D 9E7C00CF-355A-4d4e-BF60-0428CFF95540 > + MODULE_TYPE =3D BASE > + VERSION_STRING =3D 1.1 > + LIBRARY_CLASS =3D SerialPortLib > + > +[Packages] > + MdePkg/MdePkg.dec > + MdeModulePkg/MdeModulePkg.dec > + > +[LibraryClasses] > + PcdLib > + IoLib > + PlatformHookLib > + PciLib > + > +[Sources] > + BaseSerialPortLib16550.c > + > +[Pcd] > + gEfiMdeModulePkgTokenSpaceGuid.PcdSerialUseMmio ## CON= SUMES > + gEfiMdeModulePkgTokenSpaceGuid.PcdSerialUseHardwareFlowControl ## CON= SUMES > + gEfiMdeModulePkgTokenSpaceGuid.PcdSerialDetectCable ## SOM= ETIMES_CONSUMES > + gEfiMdeModulePkgTokenSpaceGuid.PcdSerialRegisterBase ## CON= SUMES > + gEfiMdeModulePkgTokenSpaceGuid.PcdSerialBaudRate ## CON= SUMES > + gEfiMdeModulePkgTokenSpaceGuid.PcdSerialLineControl ## CON= SUMES > + gEfiMdeModulePkgTokenSpaceGuid.PcdSerialFifoControl ## CON= SUMES > + gEfiMdeModulePkgTokenSpaceGuid.PcdSerialClockRate ## CON= SUMES > + gEfiMdeModulePkgTokenSpaceGuid.PcdSerialPciDeviceInfo ## CON= SUMES > + gEfiMdeModulePkgTokenSpaceGuid.PcdSerialExtendedTxFifoSize ## CON= SUMES > + gEfiMdeModulePkgTokenSpaceGuid.PcdSerialRegisterStride ## CON= SUMES > diff --git a/CorebootModulePkg/Library/CbPlatformSupportLibNull/CbPlatfor= mSupportLibNull.inf b/CorebootModulePkg/Library/CbPlatformSupportLibNull/Cb= PlatformSupportLibNull.inf > index 7e25df3345..bbf088f3f3 100644 > --- a/CorebootModulePkg/Library/CbPlatformSupportLibNull/CbPlatformSuppor= tLibNull.inf > +++ b/CorebootModulePkg/Library/CbPlatformSupportLibNull/CbPlatformSuppor= tLibNull.inf > @@ -1,35 +1,35 @@ > -## @file > -# Include all platform specific features which can be customized by IBV= /OEM. > -# > -# Copyright (c) 2016, 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 > -# which accompanies this distribution. The full text of the license ma= y 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. > -# > -## > - > -[Defines] > - INF_VERSION =3D 0x00010005 > - BASE_NAME =3D CbPlatformSupportLib > - MODULE_UNI_FILE =3D CbPlatformSupportLibNull.uni > - FILE_GUID =3D B42AA265-00CA-4d4b-AC14-DBD5268E1BC7 > - MODULE_TYPE =3D BASE > - VERSION_STRING =3D 1.0 > - LIBRARY_CLASS =3D CbPlatformSupportLib > - > -# > -# The following information is for reference only and not required by th= e build tools. > -# > -# VALID_ARCHITECTURES =3D IA32 X64 EBC > -# > - > -[Sources] > - CbPlatformSupportLibNull.c > - > -[Packages] > - MdePkg/MdePkg.dec > - CorebootModulePkg/CorebootModulePkg.dec > +## @file > +# Include all platform specific features which can be customized by IBV= /OEM. > +# > +# Copyright (c) 2016, 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 > +# which accompanies this distribution. The full text of the license ma= y 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. > +# > +## > + > +[Defines] > + INF_VERSION =3D 0x00010005 > + BASE_NAME =3D CbPlatformSupportLib > + MODULE_UNI_FILE =3D CbPlatformSupportLibNull.uni > + FILE_GUID =3D B42AA265-00CA-4d4b-AC14-DBD5268E1BC7 > + MODULE_TYPE =3D BASE > + VERSION_STRING =3D 1.0 > + LIBRARY_CLASS =3D CbPlatformSupportLib > + > +# > +# The following information is for reference only and not required by th= e build tools. > +# > +# VALID_ARCHITECTURES =3D IA32 X64 EBC > +# > + > +[Sources] > + CbPlatformSupportLibNull.c > + > +[Packages] > + MdePkg/MdePkg.dec > + CorebootModulePkg/CorebootModulePkg.dec > diff --git a/CorebootModulePkg/SataControllerDxe/SataControllerDxe.inf b/= CorebootModulePkg/SataControllerDxe/SataControllerDxe.inf > index b0ed2f4db5..5db89dcd28 100644 > --- a/CorebootModulePkg/SataControllerDxe/SataControllerDxe.inf > +++ b/CorebootModulePkg/SataControllerDxe/SataControllerDxe.inf > @@ -1,49 +1,49 @@ > -## @file > -# = > -# Component description file for the Sata Controller driver. > -# > -# Copyright (c) 2011, 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 > -# which accompanies this distribution. The full text of the license ma= y 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. > -# = > -## > - > -[Defines] > - INF_VERSION =3D 0x00010005 > - BASE_NAME =3D SataController > - FILE_GUID =3D 8F4CD826-A5A0-4e93-9522-CFB0AB72926C > - MODULE_TYPE =3D UEFI_DRIVER > - VERSION_STRING =3D 1.0 > - ENTRY_POINT =3D InitializeSataControllerDriver > - > -# > -# The following information is for reference only and not required by th= e build tools. > -# > -# VALID_ARCHITECTURES =3D IA32 X64 IPF EBC > -# > - > -[Sources] > - ComponentName.c > - SataController.c > - SataController.h > - > -[Packages] > - MdePkg/MdePkg.dec > - > -[LibraryClasses] > - UefiDriverEntryPoint > - DebugLib > - UefiLib > - BaseLib > - BaseMemoryLib > - MemoryAllocationLib > - UefiBootServicesTableLib > - > -[Protocols] > - gEfiPciIoProtocolGuid = > - gEfiIdeControllerInitProtocolGuid > +## @file > +# > +# Component description file for the Sata Controller driver. > +# > +# Copyright (c) 2011, 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 > +# which accompanies this distribution. The full text of the license ma= y 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. > +# > +## > + > +[Defines] > + INF_VERSION =3D 0x00010005 > + BASE_NAME =3D SataController > + FILE_GUID =3D 8F4CD826-A5A0-4e93-9522-CFB0AB72926C > + MODULE_TYPE =3D UEFI_DRIVER > + VERSION_STRING =3D 1.0 > + ENTRY_POINT =3D InitializeSataControllerDriver > + > +# > +# The following information is for reference only and not required by th= e build tools. > +# > +# VALID_ARCHITECTURES =3D IA32 X64 IPF EBC > +# > + > +[Sources] > + ComponentName.c > + SataController.c > + SataController.h > + > +[Packages] > + MdePkg/MdePkg.dec > + > +[LibraryClasses] > + UefiDriverEntryPoint > + DebugLib > + UefiLib > + BaseLib > + BaseMemoryLib > + MemoryAllocationLib > + UefiBootServicesTableLib > + > +[Protocols] > + gEfiPciIoProtocolGuid > + gEfiIdeControllerInitProtocolGuid > diff --git a/EmulatorPkg/Library/DxeEmuPeCoffExtraActionLib/DxeEmuPeCoffE= xtraActionLib.inf b/EmulatorPkg/Library/DxeEmuPeCoffExtraActionLib/DxeEmuPe= CoffExtraActionLib.inf > index f79ebc78e2..682231b83e 100644 > --- a/EmulatorPkg/Library/DxeEmuPeCoffExtraActionLib/DxeEmuPeCoffExtraAct= ionLib.inf > +++ b/EmulatorPkg/Library/DxeEmuPeCoffExtraActionLib/DxeEmuPeCoffExtraAct= ionLib.inf > @@ -1,48 +1,48 @@ > -## @file > -# PeCoff extra action libary for DXE phase that run Emu emulator. > -# > -# Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
> -# Portions copyright (c) 2011, Apple Inc. All rights reserved. > -# This program and the accompanying materials > -# are licensed and made available under the terms and conditions of the = BSD License > -# which 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 I= MPLIED. > - > -# > -# > -## > - > -[Defines] > - INF_VERSION =3D 0x00010005 > - BASE_NAME =3D DxeEmuPeCoffExtraActionLib > - FILE_GUID =3D 68FCD487-D230-6846-95B1-5E1F2EF942C4 > - MODULE_TYPE =3D DXE_DRIVER > - VERSION_STRING =3D 1.0 > - LIBRARY_CLASS =3D PeCoffExtraActionLib|DXE_CORE DXE_D= RIVER DXE_RUNTIME_DRIVER UEFI_DRIVER > - > - CONSTRUCTOR =3D DxeEmuPeCoffLibExtraActionConstruct= or > - > -# > -# The following information is for reference only and not required by th= e build tools. > -# > -# VALID_ARCHITECTURES =3D IA32 > -# > - > -[Sources] > - DxeEmuPeCoffExtraActionLib.c > - > -[Packages] > - MdePkg/MdePkg.dec > - EmulatorPkg/EmulatorPkg.dec > - > -[LibraryClasses] > - DebugLib > - HobLib > - BaseMemoryLib > - > -[Protocols] > - gEmuThunkProtocolGuid # PROTOCOL ALWAYS_CONSUMED > - > +## @file > +# PeCoff extra action libary for DXE phase that run Emu emulator. > +# > +# Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
> +# Portions copyright (c) 2011, Apple Inc. All rights reserved. > +# This program and the accompanying materials > +# are licensed and made available under the terms and conditions of the = BSD License > +# which 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 I= MPLIED. > + > +# > +# > +## > + > +[Defines] > + INF_VERSION =3D 0x00010005 > + BASE_NAME =3D DxeEmuPeCoffExtraActionLib > + FILE_GUID =3D 68FCD487-D230-6846-95B1-5E1F2EF942C4 > + MODULE_TYPE =3D DXE_DRIVER > + VERSION_STRING =3D 1.0 > + LIBRARY_CLASS =3D PeCoffExtraActionLib|DXE_CORE DXE_D= RIVER DXE_RUNTIME_DRIVER UEFI_DRIVER > + > + CONSTRUCTOR =3D DxeEmuPeCoffLibExtraActionConstruct= or > + > +# > +# The following information is for reference only and not required by th= e build tools. > +# > +# VALID_ARCHITECTURES =3D IA32 > +# > + > +[Sources] > + DxeEmuPeCoffExtraActionLib.c > + > +[Packages] > + MdePkg/MdePkg.dec > + EmulatorPkg/EmulatorPkg.dec > + > +[LibraryClasses] > + DebugLib > + HobLib > + BaseMemoryLib > + > +[Protocols] > + gEmuThunkProtocolGuid # PROTOCOL ALWAYS_CONSUMED > + > diff --git a/EmulatorPkg/Library/PeiEmuPeCoffExtraActionLib/PeiEmuPeCoffE= xtraActionLib.inf b/EmulatorPkg/Library/PeiEmuPeCoffExtraActionLib/PeiEmuPe= CoffExtraActionLib.inf > index 9a757f7294..fdaf19ab6c 100644 > --- a/EmulatorPkg/Library/PeiEmuPeCoffExtraActionLib/PeiEmuPeCoffExtraAct= ionLib.inf > +++ b/EmulatorPkg/Library/PeiEmuPeCoffExtraActionLib/PeiEmuPeCoffExtraAct= ionLib.inf > @@ -1,49 +1,49 @@ > -## @file > -# PeCoff extra action libary for Pei phase that run Emu emulator. > -# > -# Lib to provide memory journal status code reporting Routines > -# Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
> -# Portions copyright (c) 2011, Apple Inc. All rights reserved. > -# This program and the accompanying materials > -# are licensed and made available under the terms and conditions of the = BSD License > -# which 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 I= MPLIED. > - > -# > -# > -## > - > -[Defines] > - INF_VERSION =3D 0x00010005 > - BASE_NAME =3D PeiEmuPeCoffExtraActionLib > - FILE_GUID =3D 79C4E72A-730B-F040-8129-95877B3A97A8 > - MODULE_TYPE =3D PEIM > - VERSION_STRING =3D 1.0 > - LIBRARY_CLASS =3D PeCoffExtraActionLib|PEI_CORE PEIM > - > -# > -# The following information is for reference only and not required by th= e build tools. > -# > -# VALID_ARCHITECTURES =3D IA32 > -# > - > -[Sources] > - PeiEmuPeCoffExtraActionLib.c > - > -[Packages] > - MdePkg/MdePkg.dec > - EmulatorPkg/EmulatorPkg.dec > - > -[LibraryClasses] > - BaseLib > - PeiServicesLib > - DebugLib > - > -[Ppis] > - gEmuThunkPpiGuid # PPI ALWAYS_CONSUMED > - > -[Pcd] > - gEmulatorPkgTokenSpaceGuid.PcdPeiServicesTablePage > +## @file > +# PeCoff extra action libary for Pei phase that run Emu emulator. > +# > +# Lib to provide memory journal status code reporting Routines > +# Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
> +# Portions copyright (c) 2011, Apple Inc. All rights reserved. > +# This program and the accompanying materials > +# are licensed and made available under the terms and conditions of the = BSD License > +# which 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 I= MPLIED. > + > +# > +# > +## > + > +[Defines] > + INF_VERSION =3D 0x00010005 > + BASE_NAME =3D PeiEmuPeCoffExtraActionLib > + FILE_GUID =3D 79C4E72A-730B-F040-8129-95877B3A97A8 > + MODULE_TYPE =3D PEIM > + VERSION_STRING =3D 1.0 > + LIBRARY_CLASS =3D PeCoffExtraActionLib|PEI_CORE PEIM > + > +# > +# The following information is for reference only and not required by th= e build tools. > +# > +# VALID_ARCHITECTURES =3D IA32 > +# > + > +[Sources] > + PeiEmuPeCoffExtraActionLib.c > + > +[Packages] > + MdePkg/MdePkg.dec > + EmulatorPkg/EmulatorPkg.dec > + > +[LibraryClasses] > + BaseLib > + PeiServicesLib > + DebugLib > + > +[Ppis] > + gEmuThunkPpiGuid # PPI ALWAYS_CONSUMED > + > +[Pcd] > + gEmulatorPkgTokenSpaceGuid.PcdPeiServicesTablePage > diff --git a/EmulatorPkg/Library/SmbiosLib/SmbiosLib.inf b/EmulatorPkg/Li= brary/SmbiosLib/SmbiosLib.inf > index adcd7ef08e..9442ff8581 100644 > --- a/EmulatorPkg/Library/SmbiosLib/SmbiosLib.inf > +++ b/EmulatorPkg/Library/SmbiosLib/SmbiosLib.inf > @@ -1,47 +1,47 @@ > -## @file > -# SMBIOS Library = > -# > -# Copyright (c) 2012, Apple Inc. All rights reserved. = > -# Portions copyright (c) 2006 - 2010, Intel Corporation. All rights rese= rved.
> -# > -# This program and the accompanying materials > -# are licensed and made available under the terms and conditions of the= BSD License > -# which 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. > -# > -# > -## > - > -[Defines] > - INF_VERSION =3D 0x00010005 > - BASE_NAME =3D SmbiosLib > - FILE_GUID =3D 881863A2-09FD-3E44-8D62-7AE038D03747 > - MODULE_TYPE =3D DXE_DRIVER > - VERSION_STRING =3D 1.0 > - LIBRARY_CLASS =3D PcdLib|DXE_CORE DXE_DRIVER DXE_RUNT= IME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER SMM_CORE UEFI_APPLICATION UEFI_DRI= VER = > - > - CONSTRUCTOR =3D SmbiosLibConstructor > - > - > -[Sources] > - SmbiosLib.c > - > -[Packages] > - MdePkg/MdePkg.dec > - EmulatorPkg/EmulatorPkg.dec > - > -[LibraryClasses] > - BaseLib > - BaseMemoryLib > - DebugLib > - MemoryAllocationLib > - UefiBootServicesTableLib > - UefiLib > - > -[Protocols] > - gEfiSmbiosProtocolGuid > - > -[Depex] > - gEfiSmbiosProtocolGuid > \ No newline at end of file > +## @file > +# SMBIOS Library > +# > +# Copyright (c) 2012, Apple Inc. All rights reserved. > +# Portions copyright (c) 2006 - 2010, Intel Corporation. All rights rese= rved.
> +# > +# This program and the accompanying materials > +# are licensed and made available under the terms and conditions of the= BSD License > +# which 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. > +# > +# > +## > + > +[Defines] > + INF_VERSION =3D 0x00010005 > + BASE_NAME =3D SmbiosLib > + FILE_GUID =3D 881863A2-09FD-3E44-8D62-7AE038D03747 > + MODULE_TYPE =3D DXE_DRIVER > + VERSION_STRING =3D 1.0 > + LIBRARY_CLASS =3D PcdLib|DXE_CORE DXE_DRIVER DXE_RUNT= IME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER SMM_CORE UEFI_APPLICATION UEFI_DRI= VER > + > + CONSTRUCTOR =3D SmbiosLibConstructor > + > + > +[Sources] > + SmbiosLib.c > + > +[Packages] > + MdePkg/MdePkg.dec > + EmulatorPkg/EmulatorPkg.dec > + > +[LibraryClasses] > + BaseLib > + BaseMemoryLib > + DebugLib > + MemoryAllocationLib > + UefiBootServicesTableLib > + UefiLib > + > +[Protocols] > + gEfiSmbiosProtocolGuid > + > +[Depex] > + gEfiSmbiosProtocolGuid > diff --git a/Vlv2TbltDevicePkg/PlatformInitPei/PlatformInitPei.inf b/Vlv2= TbltDevicePkg/PlatformInitPei/PlatformInitPei.inf > index 309487d854..04a2b54665 100644 > --- a/Vlv2TbltDevicePkg/PlatformInitPei/PlatformInitPei.inf > +++ b/Vlv2TbltDevicePkg/PlatformInitPei/PlatformInitPei.inf > @@ -1,15 +1,15 @@ > # > # > # Copyright (c) 1999 - 2016, Intel Corporation. All rights reserved > -# = = > -# This program and the accompanying materials are licensed and made avai= lable under > -# the terms and conditions of the BSD License that accompanies this dist= ribution. = > -# 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 I= MPLIED. = > -# = = > +# > +# This program and the accompanying materials are licensed and made avai= lable under > +# the terms and conditions of the BSD License that accompanies this dist= ribution. > +# 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 I= MPLIED. > +# > # > # > # Module Name: > diff --git a/Vlv2TbltDevicePkg/SmBiosMiscDxe/SmBiosMiscDxe.inf b/Vlv2Tblt= DevicePkg/SmBiosMiscDxe/SmBiosMiscDxe.inf > index 332d2376d8..d539deebdf 100644 > --- a/Vlv2TbltDevicePkg/SmBiosMiscDxe/SmBiosMiscDxe.inf > +++ b/Vlv2TbltDevicePkg/SmBiosMiscDxe/SmBiosMiscDxe.inf > @@ -1,145 +1,145 @@ > -## @file > -# Component name for module MiscSubclass > -# > -# FIX ME! > -# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
> -# = = > -# This program and the accompanying materials are licensed and made avai= lable under > -# the terms and conditions of the BSD License that accompanies this dist= ribution. = > -# 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 I= MPLIED. = > -# = = > -# > -# > -# > -## > - > -[Defines] > - INF_VERSION =3D 0x00010005 > - BASE_NAME =3D MiscSubclass > - FILE_GUID =3D 4EFFB560-B28B-4e57-9DAD-4344E32EA3BA > - MODULE_TYPE =3D DXE_DRIVER > - VERSION_STRING =3D 1.0 > - ENTRY_POINT =3D MiscSubclassDriverEntryPoint > - > -# > -# The following information is for reference only and not required by th= e build tools. > -# > -# VALID_ARCHITECTURES =3D IA32 X64 IPF EBC > -# > - > -[Sources] > - MiscBaseBoardManufacturer.uni > - MiscBaseBoardManufacturerData.c > - MiscBaseBoardManufacturerFunction.c > - MiscBiosVendor.uni > - MiscBiosVendorData.c > - MiscBiosVendorFunction.c > - MiscBootInformationData.c > - MiscBootInformationFunction.c > - MiscChassisManufacturer.uni > - MiscChassisManufacturerData.c > - MiscChassisManufacturerFunction.c > - MiscNumberOfInstallableLanguagesData.c > - MiscNumberOfInstallableLanguagesFunction.c > - MiscOemString.uni > - MiscOemStringData.c > - MiscOemStringFunction.c > - MiscOnboardDevice.uni > - MiscOnboardDeviceData.c > - MiscOnboardDeviceFunction.c > - MiscPortInternalConnectorDesignator.uni > - MiscPortInternalConnectorDesignatorData.c > - MiscPortInternalConnectorDesignatorFunction.c > - MiscResetCapabilitiesData.c > - MiscResetCapabilitiesFunction.c > - MiscSystemLanguageString.uni > - MiscSystemLanguageStringData.c > - MiscSystemLanguageStringFunction.c > - MiscSystemManufacturer.uni > - MiscSystemManufacturerData.c > - MiscSystemManufacturerFunction.c > - MiscSystemOptionString.uni > - MiscSystemOptionStringData.c > - MiscSystemOptionStringFunction.c > - MiscSystemSlotDesignation.uni > - MiscSystemSlotDesignationData.c > - MiscSystemSlotDesignationFunction.c > - MiscSubclassDriver.h > - MiscSubclassDriver.uni > - MiscSubclassDriverDataTable.c > - MiscSubclassDriverEntryPoint.c > - CommonHeader.h > - MiscOemType0x90Function.c > - MiscOemType0x90Data.c > - MiscOemType0x90.uni > - MiscProcessorInformation.uni > - MiscProcessorInformationData.c > - MiscProcessorInformationFunction.c > - MiscProcessorCache.uni > - MiscProcessorCacheData.c > - MiscProcessorCacheFunction.c > - MiscPhysicalArray.uni > - MiscPhysicalArrayData.c > - MiscPhysicalArrayFunction.c > - MiscMemoryDevice.uni > - MiscMemoryDeviceData.c > - MiscMemoryDeviceFunction.c > - > -[Packages] > - MdeModulePkg/MdeModulePkg.dec > - Vlv2TbltDevicePkg/PlatformPkg.dec > - MdePkg/MdePkg.dec > - IntelFrameworkPkg/IntelFrameworkPkg.dec > - Vlv2DeviceRefCodePkg/Vlv2DeviceRefCodePkg.dec > - > -[LibraryClasses] > - HiiLib > - DevicePathLib > - UefiBootServicesTableLib > - UefiRuntimeServicesTableLib > - UefiDriverEntryPoint > - BaseMemoryLib > - DebugLib > - BaseLib > - MemoryAllocationLib > - PcdLib > - UefiLib > - BiosIdLib > - PrintLib > - CpuIA32Lib > - PchPlatformLib > - I2cLib > - NetLib > - HobLib > - = > -[Guids] > - gEfiProcessorSubClassGuid > - gEfiCacheSubClassGuid > - gEfiNormalSetupGuid > - gEfiPlatformInfoGuid > - gEfiVlv2VariableGuid > - > -[Protocols] > - gEfiSmbiosProtocolGuid # PROTOCOL ALWAYS_CONSUM= ED > - gEfiDxeSmmReadyToLockProtocolGuid # PROTOCOL ALWAYS_CONSUM= ED > - gEfiDataHubProtocolGuid > - gEfiMpServiceProtocolGuid > - gMemInfoProtocolGuid > - gEfiTdtOperationProtocolGuid > - gDxePchPlatformPolicyProtocolGuid > - gEfiSpiProtocolGuid > - gEfiSimpleNetworkProtocolGuid > - > -[Pcd] > - gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareReleaseDateString > - gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString > - gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang > - gEfiVLVTokenSpaceGuid.PcdEmmcManufacturerId > - gEfiVLVTokenSpaceGuid.PcdProductSerialNumber > - > -[Depex] > - gEfiSmbiosProtocolGuid AND gMemInfoProtocolGuid AND gEfiMpServiceProtoc= olGuid AND gEfiSimpleNetworkProtocolGuid > +## @file > +# Component name for module MiscSubclass > +# > +# FIX ME! > +# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
> +# > +# This program and the accompanying materials are licensed and made avai= lable under > +# the terms and conditions of the BSD License that accompanies this dist= ribution. > +# 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 I= MPLIED. > +# > +# > +# > +# > +## > + > +[Defines] > + INF_VERSION =3D 0x00010005 > + BASE_NAME =3D MiscSubclass > + FILE_GUID =3D 4EFFB560-B28B-4e57-9DAD-4344E32EA3BA > + MODULE_TYPE =3D DXE_DRIVER > + VERSION_STRING =3D 1.0 > + ENTRY_POINT =3D MiscSubclassDriverEntryPoint > + > +# > +# The following information is for reference only and not required by th= e build tools. > +# > +# VALID_ARCHITECTURES =3D IA32 X64 IPF EBC > +# > + > +[Sources] > + MiscBaseBoardManufacturer.uni > + MiscBaseBoardManufacturerData.c > + MiscBaseBoardManufacturerFunction.c > + MiscBiosVendor.uni > + MiscBiosVendorData.c > + MiscBiosVendorFunction.c > + MiscBootInformationData.c > + MiscBootInformationFunction.c > + MiscChassisManufacturer.uni > + MiscChassisManufacturerData.c > + MiscChassisManufacturerFunction.c > + MiscNumberOfInstallableLanguagesData.c > + MiscNumberOfInstallableLanguagesFunction.c > + MiscOemString.uni > + MiscOemStringData.c > + MiscOemStringFunction.c > + MiscOnboardDevice.uni > + MiscOnboardDeviceData.c > + MiscOnboardDeviceFunction.c > + MiscPortInternalConnectorDesignator.uni > + MiscPortInternalConnectorDesignatorData.c > + MiscPortInternalConnectorDesignatorFunction.c > + MiscResetCapabilitiesData.c > + MiscResetCapabilitiesFunction.c > + MiscSystemLanguageString.uni > + MiscSystemLanguageStringData.c > + MiscSystemLanguageStringFunction.c > + MiscSystemManufacturer.uni > + MiscSystemManufacturerData.c > + MiscSystemManufacturerFunction.c > + MiscSystemOptionString.uni > + MiscSystemOptionStringData.c > + MiscSystemOptionStringFunction.c > + MiscSystemSlotDesignation.uni > + MiscSystemSlotDesignationData.c > + MiscSystemSlotDesignationFunction.c > + MiscSubclassDriver.h > + MiscSubclassDriver.uni > + MiscSubclassDriverDataTable.c > + MiscSubclassDriverEntryPoint.c > + CommonHeader.h > + MiscOemType0x90Function.c > + MiscOemType0x90Data.c > + MiscOemType0x90.uni > + MiscProcessorInformation.uni > + MiscProcessorInformationData.c > + MiscProcessorInformationFunction.c > + MiscProcessorCache.uni > + MiscProcessorCacheData.c > + MiscProcessorCacheFunction.c > + MiscPhysicalArray.uni > + MiscPhysicalArrayData.c > + MiscPhysicalArrayFunction.c > + MiscMemoryDevice.uni > + MiscMemoryDeviceData.c > + MiscMemoryDeviceFunction.c > + > +[Packages] > + MdeModulePkg/MdeModulePkg.dec > + Vlv2TbltDevicePkg/PlatformPkg.dec > + MdePkg/MdePkg.dec > + IntelFrameworkPkg/IntelFrameworkPkg.dec > + Vlv2DeviceRefCodePkg/Vlv2DeviceRefCodePkg.dec > + > +[LibraryClasses] > + HiiLib > + DevicePathLib > + UefiBootServicesTableLib > + UefiRuntimeServicesTableLib > + UefiDriverEntryPoint > + BaseMemoryLib > + DebugLib > + BaseLib > + MemoryAllocationLib > + PcdLib > + UefiLib > + BiosIdLib > + PrintLib > + CpuIA32Lib > + PchPlatformLib > + I2cLib > + NetLib > + HobLib > + > +[Guids] > + gEfiProcessorSubClassGuid > + gEfiCacheSubClassGuid > + gEfiNormalSetupGuid > + gEfiPlatformInfoGuid > + gEfiVlv2VariableGuid > + > +[Protocols] > + gEfiSmbiosProtocolGuid # PROTOCOL ALWAYS_CONSUM= ED > + gEfiDxeSmmReadyToLockProtocolGuid # PROTOCOL ALWAYS_CONSUM= ED > + gEfiDataHubProtocolGuid > + gEfiMpServiceProtocolGuid > + gMemInfoProtocolGuid > + gEfiTdtOperationProtocolGuid > + gDxePchPlatformPolicyProtocolGuid > + gEfiSpiProtocolGuid > + gEfiSimpleNetworkProtocolGuid > + > +[Pcd] > + gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareReleaseDateString > + gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString > + gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang > + gEfiVLVTokenSpaceGuid.PcdEmmcManufacturerId > + gEfiVLVTokenSpaceGuid.PcdProductSerialNumber > + > +[Depex] > + gEfiSmbiosProtocolGuid AND gMemInfoProtocolGuid AND gEfiMpServiceProtoc= olGuid AND gEfiSimpleNetworkProtocolGuid > -- = > 2.11.0 > = > _______________________________________________ > edk2-devel mailing list > edk2-devel@lists.01.org > https://lists.01.org/mailman/listinfo/edk2-devel