1## @file
2# Instance of HOB Library using PEI Services.
3#
4# HOB Library implementation that uses PEI Services to retrieve the HOB List.
5# This library instance uses EFI_HOB_TYPE_CV defined in Intel framework HOB specification v0.9
6# to implement HobLib BuildCvHob() API.
7#
8# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
9#
10#  This program and the accompanying materials
11#  are licensed and made available under the terms and conditions of the BSD License
12#  which accompanies this distribution. The full text of the license may be found at
13#  http://opensource.org/licenses/bsd-license.php
14#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16#
17#
18##
19
20[Defines]
21  INF_VERSION                    = 0x00010005
22  BASE_NAME                      = PeiHobLib
23  MODULE_UNI_FILE                = PeiHobLib.uni
24  FILE_GUID                      = B6684612-6F5D-425d-952C-F462792EC00B
25  MODULE_TYPE                    = PEIM
26  VERSION_STRING                 = 1.0
27  LIBRARY_CLASS                  = HobLib|PEIM PEI_CORE SEC
28
29
30#
31#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC (EBC is for build only)
32#
33
34[Sources]
35  HobLib.c
36
37
38[Packages]
39  MdePkg/MdePkg.dec
40  IntelFrameworkPkg/IntelFrameworkPkg.dec
41
42[LibraryClasses]
43  BaseMemoryLib
44  PeiServicesLib
45  DebugLib
46
47[Guids]
48  gEfiHobMemoryAllocStackGuid                   ## SOMETIMES_PRODUCES ## HOB # MemoryAllocation StackHob
49  gEfiHobMemoryAllocBspStoreGuid                ## SOMETIMES_PRODUCES ## HOB # MemoryAllocation BspStoreHob
50  gEfiHobMemoryAllocModuleGuid                  ## SOMETIMES_PRODUCES ## HOB # MemoryAllocation ModuleHob
51
52#
53# [Hob]
54#   MEMORY_ALLOCATION     ## SOMETIMES_PRODUCES
55#   RESOURCE_DESCRIPTOR   ## SOMETIMES_PRODUCES
56#   FIRMWARE_VOLUME       ## SOMETIMES_PRODUCES
57#
58
59