1## @file
2# Instance of HOB Library using HOB list from EFI Configuration Table, with
3# DebugLib dependency removed
4#
5# HOB Library implementation that retrieves the HOB List
6#  from the System Configuration Table in the EFI System Table.
7#
8# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
9# Copyright (c) 2014, Linaro Ltd. All rights reserved.<BR>
10#
11#  This program and the accompanying materials
12#  are licensed and made available under the terms and conditions of the BSD License
13#  which accompanies this distribution. The full text of the license may be found at
14#  http://opensource.org/licenses/bsd-license.php.
15#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
16#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
17#
18#
19##
20
21[Defines]
22  INF_VERSION                    = 0x00010005
23  BASE_NAME                      = ArmVirtDxeHobLib
24  FILE_GUID                      = 3CD90EEC-EBF3-425D-AAE8-B16215AC4F50
25  MODULE_TYPE                    = DXE_DRIVER
26  VERSION_STRING                 = 1.0
27  LIBRARY_CLASS                  = HobLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER SMM_CORE DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER
28  CONSTRUCTOR                    = HobLibConstructor
29
30[Sources]
31  HobLib.c
32
33[Packages]
34  MdePkg/MdePkg.dec
35
36[LibraryClasses]
37  BaseMemoryLib
38
39[Guids]
40  gEfiHobListGuid                               ## CONSUMES  ## SystemTable
41