1## @file 2# Shell application to dump UEFI memory and SMRAM profile information. 3# 4# Note that if the feature is not enabled by setting PcdMemoryProfilePropertyMask, 5# the application will not display memory profile information. 6# 7# Copyright (c) 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 = MemoryProfileInfo 20 MODULE_UNI_FILE = MemoryProfileInfo.uni 21 FILE_GUID = 21429B90-5F67-4e93-AF55-1D314D646E12 22 MODULE_TYPE = UEFI_APPLICATION 23 VERSION_STRING = 1.0 24 ENTRY_POINT = UefiMain 25 26# 27# The following information is for reference only and not required by the build tools. 28# 29# VALID_ARCHITECTURES = IA32 X64 IPF EBC 30# 31 32[Sources] 33 MemoryProfileInfo.c 34 35[Packages] 36 MdePkg/MdePkg.dec 37 MdeModulePkg/MdeModulePkg.dec 38 39[LibraryClasses] 40 UefiApplicationEntryPoint 41 BaseLib 42 BaseMemoryLib 43 UefiBootServicesTableLib 44 UefiRuntimeServicesTableLib 45 DebugLib 46 UefiLib 47 MemoryAllocationLib 48 DxeServicesLib 49 PeCoffGetEntryPointLib 50 PrintLib 51 52[Guids] 53 ## SOMETIMES_CONSUMES ## GUID # Locate protocol 54 ## SOMETIMES_CONSUMES ## GUID # SmiHandlerRegister 55 gEdkiiMemoryProfileGuid 56 gZeroGuid ## SOMETIMES_CONSUMES ## GUID 57 58[Protocols] 59 gEfiSmmCommunicationProtocolGuid ## SOMETIMES_CONSUMES 60 61[UserExtensions.TianoCore."ExtraFiles"] 62 MemoryProfileInfoExtra.uni 63