1## @file
2# SystemFirmware FMP report driver.
3#
4# Produce FMP instance to report system firmware EFI_FIRMWARE_IMAGE_DESCRIPTOR.
5#
6#  Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
7#  This program and the accompanying materials
8#  are licensed and made available under the terms and conditions of the BSD License
9#  which accompanies this distribution.  The full text of the license may be found at
10#  http://opensource.org/licenses/bsd-license.php
11#
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[Defines]
18  INF_VERSION                    = 0x00010005
19  BASE_NAME                      = SystemFirmwareReportDxe
20  MODULE_UNI_FILE                = SystemFirmwareReportDxe.uni
21  FILE_GUID                      = BC1A046C-7DBD-41F2-94E5-D7595554CAF4
22  MODULE_TYPE                    = DXE_DRIVER
23  VERSION_STRING                 = 1.0
24  ENTRY_POINT                    = SystemFirmwareReportMainDxe
25
26#
27# The following information is for reference only and not required by the build tools.
28#
29#  VALID_ARCHITECTURES           = X64
30#
31
32[Sources]
33  SystemFirmwareDxe.h
34  SystemFirmwareCommonDxe.c
35  SystemFirmwareReportDxe.c
36
37[Packages]
38  MdePkg/MdePkg.dec
39  MdeModulePkg/MdeModulePkg.dec
40  SignedCapsulePkg/SignedCapsulePkg.dec
41
42[LibraryClasses]
43  BaseLib
44  UefiLib
45  BaseMemoryLib
46  DebugLib
47  PcdLib
48  MemoryAllocationLib
49  UefiBootServicesTableLib
50  HobLib
51  UefiRuntimeServicesTableLib
52  UefiDriverEntryPoint
53  DxeServicesLib
54  DxeServicesTableLib
55  PrintLib
56  EdkiiSystemCapsuleLib
57
58[Pcd]
59  gEfiMdeModulePkgTokenSpaceGuid.PcdSystemFmpCapsuleImageTypeIdGuid  ## CONSUMES
60  gEfiSignedCapsulePkgTokenSpaceGuid.PcdEdkiiSystemFirmwareImageDescriptor    ## CONSUMES
61
62[Protocols]
63  gEfiFirmwareManagementProtocolGuid     ## PRODUCES
64
65[Depex]
66  gEfiVariableArchProtocolGuid
67
68[UserExtensions.TianoCore."ExtraFiles"]
69  SystemFirmwareReportDxeExtra.uni
70
71