]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
Use correct capitalization to pass build on UNIXGCC.
[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 - 2007, Intel Corporation
6 #
7 # All rights reserved. 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.common]
34 Reclaim.c
35 Variable.c
36 Variable.h
37
38 [Packages]
39 MdePkg/MdePkg.dec
40 MdeModulePkg/MdeModulePkg.dec
41
42 [LibraryClasses]
43 MemoryAllocationLib
44 BaseLib
45 UefiLib
46 UefiBootServicesTableLib
47 FvbServiceLib
48 BaseMemoryLib
49 DebugLib
50 UefiRuntimeLib
51 DxeServicesTableLib
52 UefiDriverEntryPoint
53 PcdLib
54
55 [Protocols]
56 gEfiFirmwareVolumeBlockProtocolGuid # PROTOCOL SOMETIMES_CONSUMED
57 gEfiFaultTolerantWriteLiteProtocolGuid # PROTOCOL SOMETIMES_CONSUMED
58 gEfiVariableWriteArchProtocolGuid # PROTOCOL ALWAYS_PRODUCED
59 gEfiVariableArchProtocolGuid # PROTOCOL ALWAYS_PRODUCED
60
61 [Guids]
62 gEfiVariableInfoGuid
63 gEfiGlobalVariableGuid
64
65 [Pcd.common]
66 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize
67 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase
68 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize
69 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxHardwareErrorVariableSize
70 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize
71
72 [FeaturePcd.common]
73 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableCollectStatistics
74
75 [Depex]
76 gEfiFirmwareVolumeBlockProtocolGuid AND gEfiFaultTolerantWriteLiteProtocolGuid
77