]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
28b69c34deb4859885d5c57335b7275778f1b1f7
[mirror_edk2.git] / MdeModulePkg / Universal / Variable / RuntimeDxe / VariableRuntimeDxe.inf
1 ## @file
2 # Component description file for Variable module.
3 #
4 # This module installs three EFI_RUNTIME_SERVICES: SetVariable, GetVariable, GetNextVariableName.
5 # Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>
6 #
7 # This program and the accompanying materials
8 # are licensed and made available under the terms and conditions of the BSD License
9 # which accompanies this distribution. The full text of the license may be found at
10 # http://opensource.org/licenses/bsd-license.php
11 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 #
14 #
15 ##
16
17 [Defines]
18 INF_VERSION = 0x00010005
19 BASE_NAME = VariableRuntimeDxe
20 FILE_GUID = CBD2E4D5-7068-4FF5-B462-9822B4AD8D60
21 MODULE_TYPE = DXE_RUNTIME_DRIVER
22 VERSION_STRING = 1.0
23 ENTRY_POINT = VariableServiceInitialize
24
25 #
26 # The following information is for reference only and not required by the build tools.
27 #
28 # VALID_ARCHITECTURES = IA32 X64 EBC
29 #
30 # VIRTUAL_ADDRESS_MAP_CALLBACK = VariableClassAddressChangeEvent
31 #
32
33 [Sources]
34 Reclaim.c
35 Variable.c
36 VariableDxe.c
37 Variable.h
38
39 [Packages]
40 MdePkg/MdePkg.dec
41 MdeModulePkg/MdeModulePkg.dec
42
43 [LibraryClasses]
44 MemoryAllocationLib
45 BaseLib
46 SynchronizationLib
47 UefiLib
48 UefiBootServicesTableLib
49 BaseMemoryLib
50 DebugLib
51 UefiRuntimeLib
52 DxeServicesTableLib
53 UefiDriverEntryPoint
54 PcdLib
55 HobLib
56
57 [Protocols]
58 gEfiFirmwareVolumeBlockProtocolGuid ## SOMETIMES_CONSUMES
59 gEfiVariableWriteArchProtocolGuid ## ALWAYS_PRODUCES
60 gEfiVariableArchProtocolGuid ## ALWAYS_PRODUCES
61 gEfiFaultTolerantWriteProtocolGuid ## SOMETIMES_CONSUMES
62
63 [Guids]
64 gEfiVariableGuid ## PRODUCES ## Configuration Table Guid
65 gEfiGlobalVariableGuid ## PRODUCES ## Variable Guid
66 gEfiEventVirtualAddressChangeGuid ## PRODUCES ## Event
67 gEfiSystemNvDataFvGuid ## CONSUMES
68 gEfiHardwareErrorVariableGuid ## SOMETIMES_CONSUMES
69
70 [Pcd]
71 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize
72 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase
73 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64
74 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize
75 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxHardwareErrorVariableSize
76 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize
77 gEfiMdeModulePkgTokenSpaceGuid.PcdHwErrStorageSize
78
79 [FeaturePcd]
80 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableCollectStatistics ## SOMETIME_CONSUMES (statistic the information of variable.)
81
82 [Depex]
83 TRUE
84
85 # [Event]
86 # ##
87 # # Event will be signaled for VIRTUAL_ADDRESS_CHANGE event.
88 # #
89 # EVENT_TYPE_NOTIFY_SIGNAL ## PRODUCES
90 #
91 #
92