Vishal Bhoj | 82c8071 | 2015-12-15 21:13:33 +0530 | [diff] [blame] | 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 | #
|
| 6 | # Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
|
| 7 | #
|
| 8 | # This program and the accompanying materials
|
| 9 | # are licensed and made available under the terms and conditions of the BSD License
|
| 10 | # which accompanies this distribution. The full text of the license may be found at
|
| 11 | # http://opensource.org/licenses/bsd-license.php.
|
| 12 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
| 13 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
| 14 | #
|
| 15 | #
|
| 16 | ##
|
| 17 |
|
| 18 | [Defines]
|
| 19 | INF_VERSION = 0x00010005
|
| 20 | BASE_NAME = PeiHobLib
|
| 21 | MODULE_UNI_FILE = PeiHobLib.uni
|
| 22 | FILE_GUID = 9643128f-ac24-4b3e-b6be-d8849a306153
|
| 23 | MODULE_TYPE = PEIM
|
| 24 | VERSION_STRING = 1.0
|
| 25 | LIBRARY_CLASS = HobLib|PEIM PEI_CORE SEC
|
| 26 |
|
| 27 |
|
| 28 | #
|
| 29 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC (EBC is for build only)
|
| 30 | #
|
| 31 |
|
| 32 | [Sources]
|
| 33 | HobLib.c
|
| 34 |
|
| 35 |
|
| 36 | [Packages]
|
| 37 | MdePkg/MdePkg.dec
|
| 38 |
|
| 39 |
|
| 40 | [LibraryClasses]
|
| 41 | BaseMemoryLib
|
| 42 | PeiServicesLib
|
| 43 | DebugLib
|
| 44 |
|
| 45 | [Guids]
|
| 46 | gEfiHobMemoryAllocStackGuid ## SOMETIMES_PRODUCES ## HOB # MemoryAllocation StackHob
|
| 47 | gEfiHobMemoryAllocBspStoreGuid ## SOMETIMES_PRODUCES ## HOB # MemoryAllocation BspStoreHob
|
| 48 | gEfiHobMemoryAllocModuleGuid ## SOMETIMES_PRODUCES ## HOB # MemoryAllocation ModuleHob
|
| 49 |
|
| 50 | #
|
| 51 | # [Hob]
|
| 52 | # MEMORY_ALLOCATION ## SOMETIMES_PRODUCES
|
| 53 | # RESOURCE_DESCRIPTOR ## SOMETIMES_PRODUCES
|
| 54 | # FIRMWARE_VOLUME ## SOMETIMES_PRODUCES
|
| 55 | #
|
| 56 |
|