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