1## @file
2#  Esrt DXE driver that manages cached ESRT repository & publishes ESRT table
3#
4#  This driver produces EsrtManagement protocol to manage cache ESRT repository for FMP/Non-FMP instances.
5#  ESRT table based on repository is published on gEfiEventReadyToBootGuid.
6#
7#  Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.<BR>
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#
13#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15#
16##
17
18[Defines]
19  INF_VERSION                    = 0x00010005
20  BASE_NAME                      = EsrtDxe
21  MODULE_UNI_FILE                = EsrtDxe.uni
22  FILE_GUID                      = 999BD818-7DF7-4A9A-A502-9B75033E6A0F
23  MODULE_TYPE                    = DXE_DRIVER
24  VERSION_STRING                 = 1.0
25  ENTRY_POINT                    = EsrtDxeEntryPoint
26
27#
28# The following information is for reference only and not required by the build tools.
29#
30#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
31#
32
33[Sources]
34  EsrtImpl.h
35  EsrtImpl.c
36  EsrtDxe.c
37
38[Packages]
39  MdePkg/MdePkg.dec
40  MdeModulePkg/MdeModulePkg.dec
41
42[LibraryClasses]
43  UefiDriverEntryPoint
44  BaseMemoryLib
45  UefiLib
46  PcdLib
47  DebugLib
48  MemoryAllocationLib
49  DxeServicesTableLib
50  UefiBootServicesTableLib
51  UefiRuntimeServicesTableLib
52  PrintLib
53
54[Guids]
55  gEfiSystemResourceTableGuid             ## PRODUCES             ## SystemTable
56  gEfiEventReadyToBootGuid                ## CONSUMES             ## Event
57
58[Protocols]
59  gEfiFirmwareManagementProtocolGuid      ## SOMETIMES_CONSUMES
60  gEsrtManagementProtocolGuid             ## PRODUCES
61  gEdkiiVariableLockProtocolGuid          ## CONSUMES
62
63[Pcd]
64  gEfiMdeModulePkgTokenSpaceGuid.PcdMaxFmpEsrtCacheNum                  ## CONSUMES
65  gEfiMdeModulePkgTokenSpaceGuid.PcdMaxNonFmpEsrtCacheNum               ## CONSUMES
66  gEfiMdeModulePkgTokenSpaceGuid.PcdSystemRebootAfterCapsuleProcessFlag ## CONSUMES
67  gEfiMdeModulePkgTokenSpaceGuid.PcdSystemFmpCapsuleImageTypeIdGuid     ## CONSUMES
68
69[Depex]
70  gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid
71
72[UserExtensions.TianoCore."ExtraFiles"]
73  EsrtDxeExtra.uni
74