2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2015-07-01 05:02:45 +02:00
|
|
|
# A shell application that displays statistical information about variable usage.
|
|
|
|
#
|
|
|
|
# This application can display statistical information about variable usage for SMM variable
|
|
|
|
# driver and non-SMM variable driver.
|
2009-06-18 10:23:57 +02:00
|
|
|
# Note that if Variable Dxe driver doesn't enable the feature by setting PcdVariableCollectStatistics
|
2015-07-01 05:02:45 +02:00
|
|
|
# as TRUE, the application will not display variable statistical information.
|
2009-06-18 10:23:57 +02:00
|
|
|
#
|
2015-07-01 05:02:45 +02:00
|
|
|
# Copyright (c) 2007 - 2015, Intel Corporation. All rights reserved.<BR>
|
2010-04-24 11:49:11 +02:00
|
|
|
# This program and the accompanying materials
|
2007-10-04 23:01:21 +02:00
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2007-10-04 23:01:21 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = VariableInfo
|
2014-08-28 08:34:06 +02:00
|
|
|
MODULE_UNI_FILE = VariableInfo.uni
|
2007-10-04 23:01:21 +02:00
|
|
|
FILE_GUID = 202A2922-8C27-4943-9855-26180BF9F113
|
|
|
|
MODULE_TYPE = UEFI_APPLICATION
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = UefiMain
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2007-10-04 23:01:21 +02:00
|
|
|
VariableInfo.c
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
UefiApplicationEntryPoint
|
|
|
|
UefiLib
|
2015-07-01 05:02:45 +02:00
|
|
|
UefiBootServicesTableLib
|
|
|
|
BaseMemoryLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
|
|
|
|
[Protocols]
|
|
|
|
gEfiSmmCommunicationProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
|
|
|
|
## UNDEFINED # Used to do smm communication
|
|
|
|
## SOMETIMES_CONSUMES
|
|
|
|
gEfiSmmVariableProtocolGuid
|
2007-10-04 23:01:21 +02:00
|
|
|
|
|
|
|
[Guids]
|
2015-07-01 05:02:45 +02:00
|
|
|
gEfiAuthenticatedVariableGuid ## SOMETIMES_CONSUMES ## SystemTable
|
|
|
|
gEfiVariableGuid ## CONSUMES ## SystemTable
|
2014-08-28 08:34:06 +02:00
|
|
|
|
|
|
|
[UserExtensions.TianoCore."ExtraFiles"]
|
|
|
|
VariableInfoExtra.uni
|