1## @file
2#  This module install ACPI Boot Graphics Resource Table (BGRT).
3#
4#  Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved.<BR>
5#  This program and the accompanying materials
6#  are licensed and made available under the terms and conditions of the BSD License
7#  which accompanies this distribution.  The full text of the license may be found at
8#  http://opensource.org/licenses/bsd-license.php
9#
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[Defines]
16  INF_VERSION                    = 0x00010005
17  BASE_NAME                      = BootGraphicsResourceTableDxe
18  MODULE_UNI_FILE                = BootGraphicsResourceTableDxe.uni
19  FILE_GUID                      = B8E62775-BB0A-43f0-A843-5BE8B14F8CCD
20  MODULE_TYPE                    = UEFI_DRIVER
21  VERSION_STRING                 = 1.0
22  ENTRY_POINT                    = BootGraphicsDxeEntryPoint
23
24#
25# The following information is for reference only and not required by the build tools.
26#
27#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
28#
29
30[Sources]
31  BootGraphicsResourceTableDxe.c
32
33[Packages]
34  MdePkg/MdePkg.dec
35  MdeModulePkg/MdeModulePkg.dec
36
37[LibraryClasses]
38  UefiDriverEntryPoint
39  BaseLib
40  BaseMemoryLib
41  MemoryAllocationLib
42  UefiLib
43  UefiBootServicesTableLib
44  DebugLib
45  PcdLib
46
47[Protocols]
48  gEfiAcpiTableProtocolGuid                     ## CONSUMES
49  gEfiBootLogoProtocolGuid                      ## PRODUCES
50
51[Pcd]
52  gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultOemId            ## CONSUMES
53  gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultOemTableId       ## CONSUMES
54  gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultOemRevision      ## CONSUMES
55  gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultCreatorId        ## CONSUMES
56  gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultCreatorRevision  ## CONSUMES
57
58[Guids]
59  gEfiEventReadyToBootGuid                      ## CONSUMES ## Event
60
61[UserExtensions.TianoCore."ExtraFiles"]
62  BootGraphicsResourceTableDxeExtra.uni
63