2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2008-10-28 10:45:52 +01:00
|
|
|
# Instance of PCD Library using PCD PPI.
|
|
|
|
#
|
2009-11-24 04:29:57 +01:00
|
|
|
# There are two PCD PPIs as follows:
|
|
|
|
# 1) PCD_PPI
|
|
|
|
# It is EDKII implementation which support Dynamic/DynamicEx Pcds.
|
|
|
|
# 2) EFI_PEI_PCD_PPI
|
|
|
|
# It is defined by PI specification 1.2, Vol 3 which only support dynamicEx
|
|
|
|
# type Pcd.
|
|
|
|
# For dynamicEx type PCD, it is compatible between PCD_PPI and EFI_PEI_PCD_PPI.
|
|
|
|
# This library instance uses the PCD_PPI to handle dynamic PCD request and use
|
|
|
|
# EFI_PEI_PCD_PPI to handle dynamicEx type PCD.
|
|
|
|
#
|
|
|
|
# This library instance assume the PCD_PPI and EFI_PEI_PCD_PPI are both installed early.
|
|
|
|
#
|
2008-10-28 10:45:52 +01:00
|
|
|
# PCD Library that uses the PCD PPI to access Dynamic and DynamicEx PCD entries
|
2007-06-22 08:57:39 +02:00
|
|
|
#
|
2011-07-27 10:54:57 +02:00
|
|
|
# Copyright (c) 2007 - 2011, Intel Corporation. All rights reserved.<BR>
|
2007-06-22 08:57:39 +02:00
|
|
|
#
|
2010-04-23 18:37:43 +02:00
|
|
|
# This program and the accompanying materials
|
2007-06-22 08:57:39 +02:00
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
2010-06-25 23:56:02 +02:00
|
|
|
# http://opensource.org/licenses/bsd-license.php.
|
2007-06-22 08:57:39 +02:00
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2007-06-22 08:57:39 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = PeiPcdLib
|
|
|
|
FILE_GUID = 9dbf6f25-0da2-4a1d-8e12-e78de6ab4d0e
|
|
|
|
MODULE_TYPE = PEIM
|
|
|
|
VERSION_STRING = 1.0
|
2007-09-27 18:54:18 +02:00
|
|
|
LIBRARY_CLASS = PcdLib|PEIM PEI_CORE SEC
|
2007-06-22 08:57:39 +02:00
|
|
|
|
|
|
|
|
|
|
|
#
|
2008-10-28 08:17:17 +01:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC (EBC is for build only)
|
2007-06-22 08:57:39 +02:00
|
|
|
#
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2007-06-22 08:57:39 +02:00
|
|
|
PeiPcdLib.c
|
|
|
|
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
BaseMemoryLib
|
2007-09-04 08:11:47 +02:00
|
|
|
PeiServicesLib
|
2007-06-22 08:57:39 +02:00
|
|
|
DebugLib
|
|
|
|
|
|
|
|
|
|
|
|
[Ppis]
|
2009-01-09 08:48:37 +01:00
|
|
|
gPcdPpiGuid ## CONSUMES
|
2009-11-24 04:29:57 +01:00
|
|
|
gEfiPeiPcdPpiGuid ## CONSUMES
|
|
|
|
|
2011-07-27 10:54:57 +02:00
|
|
|
[Depex.common.PEIM]
|
2009-11-24 04:29:57 +01:00
|
|
|
gEfiPeiPcdPpiGuid
|
|
|
|
|