Last change
on this file since 101283 was 85718, checked in by vboxsync, 5 years ago |
Devices/EFI: Merge edk-stable202005 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.7 KB
|
Line | |
---|
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 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
10 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
11 | #
|
---|
12 | ##
|
---|
13 |
|
---|
14 | [Defines]
|
---|
15 | INF_VERSION = 0x00010005
|
---|
16 | BASE_NAME = VariableInfo
|
---|
17 | MODULE_UNI_FILE = VariableInfo.uni
|
---|
18 | FILE_GUID = 202A2922-8C27-4943-9855-26180BF9F113
|
---|
19 | MODULE_TYPE = UEFI_APPLICATION
|
---|
20 | VERSION_STRING = 1.0
|
---|
21 | ENTRY_POINT = UefiMain
|
---|
22 |
|
---|
23 | #
|
---|
24 | # The following information is for reference only and not required by the build tools.
|
---|
25 | #
|
---|
26 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
27 | #
|
---|
28 |
|
---|
29 | [Sources]
|
---|
30 | VariableInfo.c
|
---|
31 |
|
---|
32 | [Packages]
|
---|
33 | MdePkg/MdePkg.dec
|
---|
34 | MdeModulePkg/MdeModulePkg.dec
|
---|
35 |
|
---|
36 | [LibraryClasses]
|
---|
37 | UefiApplicationEntryPoint
|
---|
38 | UefiLib
|
---|
39 | UefiBootServicesTableLib
|
---|
40 | BaseMemoryLib
|
---|
41 | MemoryAllocationLib
|
---|
42 |
|
---|
43 | [Protocols]
|
---|
44 | gEfiMmCommunication2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
45 |
|
---|
46 | ## UNDEFINED # Used to do smm communication
|
---|
47 | ## SOMETIMES_CONSUMES
|
---|
48 | gEfiSmmVariableProtocolGuid
|
---|
49 |
|
---|
50 | [Guids]
|
---|
51 | gEfiAuthenticatedVariableGuid ## SOMETIMES_CONSUMES ## SystemTable
|
---|
52 | gEfiVariableGuid ## SOMETIMES_CONSUMES ## SystemTable
|
---|
53 | gEdkiiPiSmmCommunicationRegionTableGuid ## SOMETIMES_CONSUMES ## SystemTable
|
---|
54 |
|
---|
55 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
56 | VariableInfoExtra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.