2011-06-25 01:59:51 +02:00
|
|
|
## @file
|
|
|
|
# Instance of Memory Allocation Library using EFI Boot Services.
|
|
|
|
#
|
|
|
|
# Memory Allocation Library that uses EFI Boot Services to allocate
|
|
|
|
# and free memory. Calls OS malloc to enable OS based debug tools
|
|
|
|
#
|
2018-06-29 05:22:32 +02:00
|
|
|
# Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
2011-06-25 01:59:51 +02:00
|
|
|
#
|
2019-04-04 01:03:44 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-06-25 01:59:51 +02:00
|
|
|
#
|
|
|
|
#
|
|
|
|
##
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = GuardUefiMemoryAllocationLib
|
|
|
|
FILE_GUID = DB290230-3EFA-064F-A317-E146925684FE
|
|
|
|
MODULE_TYPE = UEFI_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
2018-06-29 05:22:32 +02:00
|
|
|
LIBRARY_CLASS = MemoryAllocationLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER DXE_CORE
|
2011-06-25 01:59:51 +02:00
|
|
|
|
|
|
|
#
|
2018-06-29 05:22:32 +02:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC
|
2011-06-25 01:59:51 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
[Sources]
|
|
|
|
MemoryAllocationLib.c
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
2011-06-28 18:47:23 +02:00
|
|
|
EmulatorPkg/EmulatorPkg.dec
|
2011-06-25 01:59:51 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
DebugLib
|
|
|
|
BaseMemoryLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
EmuThunkLib
|