1## @file
2#  Status Code Handler Driver which produces datahub handler.
3#
4#  Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved.<BR>
5#
6#  This program and the accompanying materials
7#  are licensed and made available under the terms and conditions of the BSD License
8#  which accompanies this distribution. The full text of the license may be found at
9#  http://opensource.org/licenses/bsd-license.php
10#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12#
13#
14##
15
16[Defines]
17  INF_VERSION                    = 0x00010005
18  BASE_NAME                      = DatahubStatusCodeHandlerDxe
19  MODULE_UNI_FILE                = DatahubStatusCodeHandlerDxe.uni
20  FILE_GUID                      = 863D214F-0920-437B-8CAD-88EA83A24E97
21  MODULE_TYPE                    = DXE_DRIVER
22  VERSION_STRING                 = 1.0
23  ENTRY_POINT                    = DatahubStatusCodeHandlerDxeEntry
24
25#
26# The following information is for reference only and not required by the build tools.
27#
28#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
29#
30
31[Sources]
32  DatahubStatusCodeHandlerDxe.h
33  DatahubStatusCodeHandlerDxe.c
34  DataHubStatusCodeWorker.c
35
36[Packages]
37  MdePkg/MdePkg.dec
38  MdeModulePkg/MdeModulePkg.dec
39  IntelFrameworkPkg/IntelFrameworkPkg.dec
40  IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
41
42[LibraryClasses]
43  BaseLib
44  MemoryAllocationLib
45  UefiBootServicesTableLib
46  UefiDriverEntryPoint
47  PcdLib
48  PrintLib
49  ReportStatusCodeLib
50  DebugLib
51  SynchronizationLib
52  BaseMemoryLib
53
54[Guids]
55  gEfiEventExitBootServicesGuid                 ## CONSUMES ## Event
56  gEfiDataHubStatusCodeRecordGuid               ## PRODUCES ## UNDEFINED # DataRecord Guid
57  gEfiStatusCodeDataTypeDebugGuid               ## SOMETIMES_PRODUCES ## UNDEFINED # Record data type
58
59[Protocols]
60  gEfiRscHandlerProtocolGuid                    ## CONSUMES
61  gEfiDataHubProtocolGuid                       ## CONSUMES
62  gEfiStatusCodeRuntimeProtocolGuid             ## UNDEFINED
63
64[FeaturePcd]
65  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseDataHub ## CONSUMES
66
67[Depex]
68  gEfiRscHandlerProtocolGuid AND
69  gEfiDataHubProtocolGuid
70
71[UserExtensions.TianoCore."ExtraFiles"]
72  DatahubStatusCodeHandlerDxeExtra.uni
73