• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2#  This library is only intended to be used by PlatformBootManagerLib
3#  to show progress bar and logo.
4#
5#  Copyright (c) 2011 - 2016, Intel Corporation. All rights reserved.<BR>
6#  This program and the accompanying materials are licensed and made available under
7#  the terms and conditions of the BSD License that accompanies this distribution.
8#  The full text of the license may be found at
9#  http://opensource.org/licenses/bsd-license.php.
10#
11#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13#
14##
15
16[Defines]
17  INF_VERSION                    = 0x00010005
18  BASE_NAME                      = BootLogoLib
19  MODULE_UNI_FILE                = BootLogoLib.uni
20  FILE_GUID                      = 85CDAFAD-13BE-422A-A8E5-55A249600DC3
21  MODULE_TYPE                    = DXE_DRIVER
22  VERSION_STRING                 = 1.0
23  LIBRARY_CLASS                  = BootLogoLib|DXE_DRIVER UEFI_APPLICATION
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  BootLogoLib.c
33
34[Packages]
35  MdePkg/MdePkg.dec
36  MdeModulePkg/MdeModulePkg.dec
37
38[LibraryClasses]
39  BaseLib
40  UefiBootServicesTableLib
41  MemoryAllocationLib
42  UefiLib
43  BaseMemoryLib
44  DebugLib
45  PrintLib
46  PcdLib
47
48[Protocols]
49  gEfiGraphicsOutputProtocolGuid                ## SOMETIMES_CONSUMES
50  gEfiUgaDrawProtocolGuid |PcdUgaConsumeSupport ## SOMETIMES_CONSUMES
51  gEfiBootLogoProtocolGuid                      ## SOMETIMES_CONSUMES
52  gEfiUserManagerProtocolGuid                   ## CONSUMES
53  gEdkiiPlatformLogoProtocolGuid                ## CONSUMES
54
55[FeaturePcd]
56  gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport ## CONSUMES
57