66 lines
1.8 KiB
INI
66 lines
1.8 KiB
INI
## @file
|
|
# SMM Interface for the EraseCpt Tool
|
|
#
|
|
#******************************************************************************
|
|
#* Copyright (c) 2019, 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 = L05EraseCptSmm
|
|
FILE_GUID = 416F0796-B677-44B3-8847-FA38BD994ABD
|
|
MODULE_TYPE = DXE_SMM_DRIVER
|
|
VERSION_STRING = 1.0
|
|
PI_SPECIFICATION_VERSION = 0x0001000A
|
|
ENTRY_POINT = L05EraseCptSmmEntry
|
|
|
|
[Packages]
|
|
$(PROJECT_PKG)/Project.dec
|
|
$(OEM_FEATURE_COMMON_PATH)/$(OEM_FEATURE_COMMON_PATH).dec
|
|
$(OEM_FEATURE_OVERRIDE_CORE_CODE)/$(OEM_FEATURE_OVERRIDE_CORE_CODE).dec
|
|
InsydeModulePkg/InsydeModulePkg.dec
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
[Sources]
|
|
EraseCptSmm.c
|
|
EraseCptSmm.h
|
|
|
|
[LibraryClasses]
|
|
UefiDriverEntryPoint
|
|
UefiBootServicesTableLib
|
|
SmmServicesTableLib
|
|
BaseMemoryLib
|
|
FlashRegionLib
|
|
|
|
[Guids]
|
|
gL05ComputraceEraseFlagGuid
|
|
gH2OFlashMapRegionFvGuid
|
|
gL05H2OFlashMapRegionEepromGuid
|
|
gL05H2OFlashMapRegionComputraceFvGuid
|
|
|
|
[Protocols]
|
|
gEfiSmmCpuProtocolGuid
|
|
gEfiSmmFwBlockServiceProtocolGuid
|
|
gEfiL05SmmSwSmiInterfaceProtocolGuid
|
|
gEfiL05VariableProtocolGuid
|
|
|
|
[Pcd]
|
|
|
|
[Depex]
|
|
gEfiSmmBase2ProtocolGuid AND
|
|
gEfiSmmCpuProtocolGuid AND
|
|
gEfiSmmFwBlockServiceProtocolGuid AND
|
|
gEfiL05SmmSwSmiInterfaceProtocolGuid
|
|
|
|
[BuildOptions]
|
|
!if $(INSYDE_DEBUGGER) == YES
|
|
MSFT:*_*_*_CC_FLAGS = /Od
|
|
!endif
|