1## @file 2# A shell application that displays statistical information about variable usage. 3# 4# This application can display statistical information about variable usage for SMM variable 5# driver and non-SMM variable driver. 6# Note that if Variable Dxe/Smm driver doesn't enable the feature by setting PcdVariableCollectStatistics 7# as TRUE, the application will not display variable statistical information. 8# 9# Copyright (c) 2007 - 2016, Intel Corporation. All rights reserved.<BR> 10# This program and the accompanying materials 11# are licensed and made available under the terms and conditions of the BSD License 12# which accompanies this distribution. The full text of the license may be found at 13# http://opensource.org/licenses/bsd-license.php 14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 16# 17## 18 19[Defines] 20 INF_VERSION = 0x00010005 21 BASE_NAME = VariableInfo 22 MODULE_UNI_FILE = VariableInfo.uni 23 FILE_GUID = 202A2922-8C27-4943-9855-26180BF9F113 24 MODULE_TYPE = UEFI_APPLICATION 25 VERSION_STRING = 1.0 26 ENTRY_POINT = UefiMain 27 28# 29# The following information is for reference only and not required by the build tools. 30# 31# VALID_ARCHITECTURES = IA32 X64 IPF EBC 32# 33 34[Sources] 35 VariableInfo.c 36 37[Packages] 38 MdePkg/MdePkg.dec 39 MdeModulePkg/MdeModulePkg.dec 40 41[LibraryClasses] 42 UefiApplicationEntryPoint 43 UefiLib 44 UefiBootServicesTableLib 45 BaseMemoryLib 46 MemoryAllocationLib 47 48[Protocols] 49 gEfiSmmCommunicationProtocolGuid ## SOMETIMES_CONSUMES 50 51 ## UNDEFINED # Used to do smm communication 52 ## SOMETIMES_CONSUMES 53 gEfiSmmVariableProtocolGuid 54 55[Guids] 56 gEfiAuthenticatedVariableGuid ## SOMETIMES_CONSUMES ## SystemTable 57 gEfiVariableGuid ## SOMETIMES_CONSUMES ## SystemTable 58 gEdkiiPiSmmCommunicationRegionTableGuid ## SOMETIMES_CONSUMES ## SystemTable 59 60[UserExtensions.TianoCore."ExtraFiles"] 61 VariableInfoExtra.uni 62