49 lines
1.3 KiB
INI
49 lines
1.3 KiB
INI
## @filer
|
|
# Implement the test SMM driver for status code to RAM.
|
|
#
|
|
# ***************************************************************************
|
|
# * Copyright (c) 2021, 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 = 0x00010017
|
|
BASE_NAME = StatusCodeHandlerTestSmm
|
|
FILE_GUID = 4DF0BA90-EE4C-4760-B085-AF523470C50B
|
|
VERSION_STRING = 1.0
|
|
MODULE_TYPE = DXE_SMM_DRIVER
|
|
PI_SPECIFICATION_VERSION = 1.20
|
|
ENTRY_POINT = StatusCodeHandlerTestSmmEntryPoint
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
[Sources]
|
|
StatusCodeHandlerTestSmm.c
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
UefiDriverEntryPoint
|
|
SmmServicesTableLib
|
|
DebugLib
|
|
UefiLib
|
|
BaseMemoryLib
|
|
|
|
[Protocols]
|
|
gEfiSmmSwDispatch2ProtocolGuid
|
|
|
|
[Guids]
|
|
gMemoryStatusCodeRecordGuid
|
|
|
|
[Depex]
|
|
gEfiSmmBase2ProtocolGuid AND
|
|
gEfiSmmSwDispatch2ProtocolGuid
|