]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - SecurityPkg/VariableAuthenticated/RuntimeDxe/VariableRuntimeDxe.inf
Remove unnecessary dependency in variable driver.
[mirror_edk2.git] / SecurityPkg / VariableAuthenticated / RuntimeDxe / VariableRuntimeDxe.inf
... / ...
CommitLineData
1## @file\r
2# Component description file for Authenticated Variable module.\r
3#\r
4# Caution: This module requires additional review when modified.\r
5# This driver will have external input - variable data.\r
6# This external input must be validated carefully to avoid security issue like\r
7# buffer overflow, integer overflow.\r
8#\r
9# Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>\r
10# This program and the accompanying materials\r
11# are licensed and made available under the terms and conditions of the BSD License\r
12# which accompanies this distribution. The full text of the license may be found at\r
13# http://opensource.org/licenses/bsd-license.php\r
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
16#\r
17##\r
18\r
19[Defines]\r
20 INF_VERSION = 0x00010005\r
21 BASE_NAME = VariableAuthRuntimeDxe\r
22 FILE_GUID = 2226F30F-3D5B-402d-9936-A97184EB4516\r
23 MODULE_TYPE = DXE_RUNTIME_DRIVER\r
24 VERSION_STRING = 1.0\r
25 ENTRY_POINT = VariableServiceInitialize\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 EBC\r
31#\r
32# VIRTUAL_ADDRESS_MAP_CALLBACK = VariableClassAddressChangeEvent\r
33#\r
34\r
35[Sources]\r
36 Reclaim.c\r
37 Variable.c\r
38 VariableDxe.c\r
39 Variable.h\r
40 AuthService.c\r
41 AuthService.h\r
42 Measurement.c\r
43\r
44[Packages]\r
45 MdePkg/MdePkg.dec\r
46 MdeModulePkg/MdeModulePkg.dec\r
47 CryptoPkg/CryptoPkg.dec\r
48 SecurityPkg/SecurityPkg.dec\r
49\r
50[LibraryClasses]\r
51 MemoryAllocationLib\r
52 BaseLib\r
53 SynchronizationLib\r
54 UefiLib\r
55 UefiBootServicesTableLib\r
56 BaseMemoryLib\r
57 DebugLib\r
58 UefiRuntimeLib\r
59 DxeServicesTableLib\r
60 UefiDriverEntryPoint\r
61 PcdLib\r
62 BaseCryptLib\r
63 PlatformSecureLib\r
64 HobLib\r
65 TpmMeasurementLib\r
66\r
67[Protocols]\r
68 gEfiFirmwareVolumeBlockProtocolGuid ## SOMETIMES_CONSUMES\r
69 gEfiVariableWriteArchProtocolGuid ## ALWAYS_PRODUCES\r
70 gEfiVariableArchProtocolGuid ## ALWAYS_PRODUCES\r
71 gEfiFaultTolerantWriteProtocolGuid ## SOMETIMES_CONSUMES\r
72 gEdkiiVariableLockProtocolGuid ## ALWAYS_PRODUCES\r
73\r
74[Guids]\r
75 gEfiAuthenticatedVariableGuid ## PRODUCES ## Configuration Table Guid\r
76 gEfiGlobalVariableGuid ## PRODUCES ## Variable Guid\r
77 gEfiEventVirtualAddressChangeGuid ## CONSUMES ## Event\r
78 gEfiCertTypeRsa2048Sha256Guid\r
79 gEfiImageSecurityDatabaseGuid\r
80 gEfiCertX509Guid\r
81 gEfiCertPkcs7Guid\r
82 gEfiCertRsa2048Guid\r
83 gEfiSecureBootEnableDisableGuid\r
84 gEfiCustomModeEnableGuid\r
85 gEfiVendorKeysNvGuid\r
86 gEfiSystemNvDataFvGuid ## CONSUMES\r
87 gEfiCertDbGuid\r
88 gEfiHardwareErrorVariableGuid ## SOMETIMES_CONSUMES\r
89 gEfiEndOfDxeEventGroupGuid ## CONSUMES ## Event\r
90 gEdkiiFaultTolerantWriteGuid ## CONSUMES\r
91\r
92[Pcd]\r
93 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize\r
94 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase\r
95 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64\r
96 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize\r
97 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxHardwareErrorVariableSize\r
98 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize\r
99 gEfiMdeModulePkgTokenSpaceGuid.PcdHwErrStorageSize\r
100\r
101[FeaturePcd]\r
102 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableCollectStatistics ## SOMETIME_CONSUMES (statistic the information of variable.)\r
103\r
104[Depex]\r
105 TRUE\r
106\r
107# [Event]\r
108# ##\r
109# # Event will be signaled for VIRTUAL_ADDRESS_CHANGE event.\r
110# #\r
111# EVENT_TYPE_NOTIFY_SIGNAL ## PRODUCES\r
112#\r
113#\r
114\r