73 lines
2.0 KiB
INI
73 lines
2.0 KiB
INI
## @file
|
|
#
|
|
#******************************************************************************
|
|
#* Copyright (c) 2012 - 2016, Insyde Software Corporation. 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 = SpecificVariableServiceSmm
|
|
FILE_GUID = 6B8BCCF3-E62C-4e19-9FF7-1668C7D3FD8A
|
|
MODULE_TYPE = DXE_SMM_DRIVER
|
|
VERSION_STRING = 1.0
|
|
PI_SPECIFICATION_VERSION = 0x0001000A
|
|
ENTRY_POINT = L05VariableServiceSmmEntry
|
|
|
|
[Sources]
|
|
SpecificVariableServiceSmm.c
|
|
SpecificVariableServiceSmm.h
|
|
|
|
[Packages]
|
|
$(PROJECT_PKG)/Project.dec
|
|
$(OEM_FEATURE_OVERRIDE_CORE_CODE)/$(OEM_FEATURE_OVERRIDE_CORE_CODE).dec
|
|
$(OEM_FEATURE_COMMON_PATH)/$(OEM_FEATURE_COMMON_PATH).dec
|
|
InsydeModulePkg/InsydeModulePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
MdePkg/MdePkg.dec
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
BaseMemoryLib
|
|
UefiDriverEntryPoint
|
|
SmmServicesTableLib
|
|
UefiBootServicesTableLib
|
|
PcdLib
|
|
FlashDevicesLib
|
|
FlashRegionLib
|
|
|
|
[Protocols]
|
|
gEfiSmmSwDispatch2ProtocolGuid
|
|
gEfiL05VariableProtocolGuid
|
|
gEfiSmmCpuProtocolGuid
|
|
gEfiSmmVariableProtocolGuid
|
|
|
|
[Guids]
|
|
gL05H2OFlashMapRegionVaribale1Guid
|
|
gL05H2OFlashMapRegionVaribale2Guid
|
|
|
|
[FeaturePcd]
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode
|
|
|
|
[Pcd]
|
|
gInsydeTokenSpaceGuid.PcdSoftwareSmiPort
|
|
|
|
[FixedPcd]
|
|
gL05ServicesTokenSpaceGuid.PcdFlashFvL05Variable1Size
|
|
gL05ServicesTokenSpaceGuid.PcdFlashFvL05Variable2Size
|
|
|
|
[Depex]
|
|
gEfiSmmBase2ProtocolGuid AND
|
|
gEfiSmmSwDispatch2ProtocolGuid AND
|
|
gEfiSmmCpuProtocolGuid
|
|
|
|
[BuildOptions]
|
|
!if $(INSYDE_DEBUGGER) == YES
|
|
MSFT:*_*_*_CC_FLAGS = /Od
|
|
!endif
|