1## @file
2# Instance of Memory Allocation Library using SMM Services Table.
3#
4# Memory Allocation Library that uses services from the SMM Services Table to
5# allocate and free memory.
6#
7# Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
8# This program and the accompanying materials
9# are licensed and made available under the terms and conditions of the BSD License
10# which accompanies this distribution. The full text of the license may be found at
11# http://opensource.org/licenses/bsd-license.php.
12# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14#
15##
16
17[Defines]
18  INF_VERSION                    = 0x00010005
19  BASE_NAME                      = SmmMemoryAllocationLib
20  MODULE_UNI_FILE                = SmmMemoryAllocationLib.uni
21  FILE_GUID                      = 4DF30A5D-D5B0-4f85-80ED-6B16CD343C8E
22  MODULE_TYPE                    = DXE_SMM_DRIVER
23  VERSION_STRING                 = 1.0
24  PI_SPECIFICATION_VERSION       = 0x0001000A
25  LIBRARY_CLASS                  = MemoryAllocationLib|DXE_SMM_DRIVER
26  CONSTRUCTOR                    = SmmMemoryAllocationLibConstructor
27  DESTRUCTOR                     = SmmMemoryAllocationLibDestructor
28
29#
30#  VALID_ARCHITECTURES           = IA32 X64
31#
32
33[Sources]
34  MemoryAllocationLib.c
35
36[Packages]
37  MdePkg/MdePkg.dec
38
39[LibraryClasses]
40  DebugLib
41  BaseMemoryLib
42  SmmServicesTableLib
43  UefiBootServicesTableLib
44
45[Protocols]
46  gEfiSmmAccess2ProtocolGuid    ## CONSUMES
47
48[Depex]
49  gEfiSmmAccess2ProtocolGuid
50
51