Commit | Line | Data |
---|---|---|
33a5a666 | 1 | #/** @file\r |
133e09da | 2 | # Sample UEFI Application Reference Module.\r |
3 | # This is a shell application that will display statistical information about variable\r | |
4 | # usage.\r | |
5e895e6a | 5 | # Note that if Variable Dxe driver doesn't enable the feature by setting PcdVariableCollectStatistics\r |
6 | # as TRUE, The application will not display variable statistical information.\r | |
7 | #\r | |
133e09da | 8 | # Copyright (c) 2007 - 2008, Intel Corporation.\r |
33a5a666 A |
9 | # All rights reserved. This program and the accompanying materials\r |
10 | # are licensed and made available under the terms and conditions of the BSD License\r | |
11 | # which accompanies this distribution. The full text of the license may be found at\r | |
12 | # http://opensource.org/licenses/bsd-license.php\r | |
13 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
14 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
15 | #\r | |
33a5a666 A |
16 | #**/\r |
17 | \r | |
18 | [Defines]\r | |
19 | INF_VERSION = 0x00010005\r | |
20 | BASE_NAME = VariableInfo\r | |
21 | FILE_GUID = 202A2922-8C27-4943-9855-26180BF9F113\r | |
22 | MODULE_TYPE = UEFI_APPLICATION\r | |
23 | VERSION_STRING = 1.0\r | |
33a5a666 A |
24 | \r |
25 | ENTRY_POINT = UefiMain\r | |
26 | \r | |
27 | #\r | |
28 | # The following information is for reference only and not required by the build tools.\r | |
29 | #\r | |
30 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC\r | |
31 | #\r | |
32 | \r | |
33 | [Sources.common]\r | |
34 | VariableInfo.c\r | |
35 | \r | |
36 | \r | |
37 | [Packages]\r | |
38 | MdePkg/MdePkg.dec\r | |
39 | MdeModulePkg/MdeModulePkg.dec\r | |
40 | \r | |
41 | \r | |
42 | [LibraryClasses]\r | |
33a5a666 A |
43 | UefiApplicationEntryPoint\r |
44 | UefiLib\r | |
33a5a666 A |
45 | \r |
46 | [Guids]\r | |
3709c4cd | 47 | gEfiVariableGuid ## CONSUMES ## Configuration Table Guid\r |