]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/DxePcdLib/DxePcdLib.inf
MdePkg and MdeModulePkg Pcd: Add the new EFI_GET_PCD_INFO_PROTOCOL and EFI_GET_PCD_IN...
[mirror_edk2.git] / MdePkg / Library / DxePcdLib / DxePcdLib.inf
1 ## @file
2 # Instance of PCD Library using PCD Protocol.
3 #
4 # There are two PCD PROTOCOLs as follows:
5 # 1) PCD_PROTOCOL
6 # It is EDKII implementation which support Dynamic/DynamicEx Pcds.
7 # 2) EFI_PCD_PROTOCOL
8 # It is defined by PI specification 1.2, Vol 3 which only support dynamicEx
9 # type Pcd.
10 #
11 # For dynamicEx type PCD, it is compatible between PCD_PROTOCOL and EFI_PCD_PROTOCOL.
12 #
13 # This library instance uses the PCD_PROTOCOL to handle dynamic PCD request and use
14 # EFI_PCD_PROTOCOL to handle dynamicEx type PCD.
15 #
16 # Copyright (c) 2007 - 2013, Intel Corporation. All rights reserved.<BR>
17 #
18 # This program and the accompanying materials
19 # are licensed and made available under the terms and conditions of the BSD License
20 # which accompanies this distribution. The full text of the license may be found at
21 # http://opensource.org/licenses/bsd-license.php.
22 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
23 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
24 #
25 #
26 ##
27
28 [Defines]
29 INF_VERSION = 0x00010005
30 BASE_NAME = DxePcdLib
31 FILE_GUID = af97eb89-4cc6-45f8-a514-ca025b346480
32 MODULE_TYPE = DXE_DRIVER
33 VERSION_STRING = 1.0
34 LIBRARY_CLASS = PcdLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER SMM_CORE UEFI_APPLICATION UEFI_DRIVER
35
36 #
37 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
38 #
39
40 [Sources]
41 DxePcdLib.c
42
43
44 [Packages]
45 MdePkg/MdePkg.dec
46
47
48 [LibraryClasses]
49 BaseMemoryLib
50 UefiBootServicesTableLib
51 DebugLib
52
53
54 [Protocols]
55 gPcdProtocolGuid ## CONSUMES
56 gEfiPcdProtocolGuid ## CONSUMES
57 gGetPcdInfoProtocolGuid ## SOMETIMES_CONSUMES
58 gEfiGetPcdInfoProtocolGuid ## SOMETIMES_CONSUMES
59
60 [Depex.common.DXE_DRIVER, Depex.common.DXE_RUNTIME_DRIVER, Depex.common.DXE_SAL_DRIVER, Depex.common.DXE_SMM_DRIVER]
61 gEfiPcdProtocolGuid
62