53 lines
1.6 KiB
INI
53 lines
1.6 KiB
INI
## @file
|
|
# Instance of SMM/DXE BIOS Self-Healing Services Library.
|
|
#
|
|
#******************************************************************************
|
|
#* Copyright (c) 2020, Insyde Software Corp. All Rights Reserved.
|
|
#*
|
|
#* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
#* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
#* any part of this publication in any form, by any means, without the prior
|
|
#* written permission of Insyde Software Corporation.
|
|
#*
|
|
#******************************************************************************
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = SmmDxeBiosSelfHealingLib
|
|
FILE_GUID = DA0B54C5-C50D-4226-A77B-16BCCB574135
|
|
MODULE_TYPE = DXE_SMM_DRIVER
|
|
VERSION_STRING = 1.0
|
|
LIBRARY_CLASS = SmmDxeBiosSelfHealingLib|DXE_SMM_DRIVER DXE_DRIVER
|
|
CONSTRUCTOR = SmmDxeBiosSelfHealingLibConstructor
|
|
|
|
[Sources]
|
|
SmmDxeBiosSelfHealingLib.c
|
|
|
|
[Packages]
|
|
$(OEM_FEATURE_COMMON_PATH)/$(OEM_FEATURE_COMMON_PATH).dec
|
|
InsydeModulePkg/InsydeModulePkg.dec
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
[LibraryClasses]
|
|
UefiLib
|
|
UefiBootServicesTableLib
|
|
BaseMemoryLib
|
|
DebugLib
|
|
|
|
[Protocols]
|
|
gEfiSmmBase2ProtocolGuid
|
|
gEfiSmmFwBlockServiceProtocolGuid
|
|
gEfiL05VariableProtocolGuid
|
|
|
|
[Guids]
|
|
gL05BiosSelfHealingFlagGuid
|
|
|
|
[Pcd]
|
|
gL05ServicesTokenSpaceGuid.PcdFlashFvEepromBase
|
|
gL05ServicesTokenSpaceGuid.PcdFlashFvEepromSize
|
|
|
|
[BuildOptions]
|
|
!if $(INSYDE_DEBUGGER) == YES
|
|
MSFT:*_*_*_CC_FLAGS = /Od
|
|
!endif |