• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2#  Define and produce general Boot Manager related interfaces.
3#
4#  The implementation provides richful library functions supporting load option
5#  manipulation, hotkey registration, UEFI boot, connect/disconnect, console
6#  manipulation, driver health checking and etc.
7#
8#  Copyright (c) 2007 - 2015, Intel Corporation. All rights reserved.<BR>
9#  This program and the accompanying materials
10#  are licensed and made available under the terms and conditions of the BSD License
11#  which accompanies this distribution.  The full text of the license may be found at
12#  http://opensource.org/licenses/bsd-license.php
13#
14#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16#
17##
18
19[Defines]
20  INF_VERSION                    = 0x00010005
21  BASE_NAME                      = UefiBootManagerLib
22  MODULE_UNI_FILE                = UefiBootManagerLib.uni
23  FILE_GUID                      = 8D4752BC-595E-49a2-B4AF-F3F57B601DE9
24  MODULE_TYPE                    = DXE_DRIVER
25  VERSION_STRING                 = 1.0
26  LIBRARY_CLASS                  = UefiBootManagerLib|DXE_DRIVER DXE_RUNTIME_DRIVER UEFI_APPLICATION UEFI_DRIVER
27
28#
29# The following information is for reference only and not required by the build tools.
30#
31#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
32#
33
34[Sources]
35  BmPerformance.c
36  BmConnect.c
37  BmMisc.c
38  BmConsole.c
39  BmBoot.c
40  BmLoadOption.c
41  BmHotkey.c
42  BmDriverHealth.c
43  InternalBm.h
44
45[Packages]
46  MdePkg/MdePkg.dec
47  MdeModulePkg/MdeModulePkg.dec
48
49[LibraryClasses]
50  HobLib
51  PcdLib
52  BaseLib
53  UefiLib
54  TimerLib
55  DebugLib
56  PrintLib
57  BaseMemoryLib
58  DevicePathLib
59  PerformanceLib
60  PeCoffGetEntryPointLib
61  UefiBootServicesTableLib
62  UefiRuntimeServicesTableLib
63  DxeServicesTableLib
64  MemoryAllocationLib
65  DxeServicesLib
66  ReportStatusCodeLib
67  PerformanceLib
68  HiiLib
69  SortLib
70
71[Guids]
72  gEfiMemoryTypeInformationGuid                 ## CONSUMES ## GUID (The identifier of memory type information type in system table)
73                                                ## CONSUMES ## GUID HOB (The hob holding memory type information)
74  gEfiGlobalVariableGuid                        ## SOMETIMES_PRODUCES ## Variable:L"BootCurrent" (The boot option of current boot)
75                                                ## SOMETIMES_CONSUMES ## Variable:L"BootXX" (Boot option variable)
76                                                ## CONSUMES           ## Variable:L"Timeout" (The time out value in second of showing progress bar)
77                                                ## SOMETIMES_CONSUMES ## Variable:L"BootOrder" (The boot option array)
78                                                ## SOMETIMES_CONSUMES ## Variable:L"DriverOrder" (The driver order list)
79                                                ## SOMETIMES_CONSUMES ## Variable:L"ConIn" (The device path of console in device)
80                                                ## SOMETIMES_CONSUMES ## Variable:L"ConOut" (The device path of console out device)
81                                                ## SOMETIMES_CONSUMES ## Variable:L"ErrOut" (The device path of error out device)
82  gEfiFileInfoGuid                              ## CONSUMES ## GUID
83  gPerformanceProtocolGuid                      ## SOMETIMES_PRODUCES ## Variable:L"PerfDataMemAddr" (The ACPI address of performance data)
84  gEdkiiStatusCodeDataTypeVariableGuid          ## SOMETIMES_CONSUMES ## GUID
85  gEfiDiskInfoAhciInterfaceGuid                 ## SOMETIMES_CONSUMES ## GUID
86  gEfiDiskInfoIdeInterfaceGuid                  ## SOMETIMES_CONSUMES ## GUID
87  gEfiDiskInfoScsiInterfaceGuid                 ## SOMETIMES_CONSUMES ## GUID
88  gZeroGuid                                     ## CONSUMES ## GUID
89
90[Protocols]
91  gEfiPciRootBridgeIoProtocolGuid               ## CONSUMES
92  gEfiSimpleFileSystemProtocolGuid              ## CONSUMES
93  gEfiLoadFileProtocolGuid                      ## CONSUMES
94  gEfiSimpleTextOutProtocolGuid                 ## CONSUMES
95  gEfiPciIoProtocolGuid                         ## CONSUMES
96  gEfiLoadedImageProtocolGuid                   ## CONSUMES
97  gEfiSimpleNetworkProtocolGuid                 ## CONSUMES
98  gEfiSimpleTextInProtocolGuid                  ## CONSUMES
99  gEfiBlockIoProtocolGuid                       ## CONSUMES
100  gEfiFirmwareVolume2ProtocolGuid               ## CONSUMES
101  gEfiDevicePathProtocolGuid                    ## CONSUMES
102  gEfiBootLogoProtocolGuid                      ## CONSUMES
103  gEfiSimpleTextInputExProtocolGuid             ## CONSUMES
104  gEdkiiVariableLockProtocolGuid                ## CONSUMES
105  gEfiGraphicsOutputProtocolGuid                ## SOMETIMES_CONSUMES
106  gEfiUsbIoProtocolGuid                         ## SOMETIMES_CONSUMES
107  gEfiDiskInfoProtocolGuid                      ## SOMETIMES_CONSUMES
108  gEfiDriverHealthProtocolGuid                  ## SOMETIMES_CONSUMES
109  gEfiFormBrowser2ProtocolGuid                  ## SOMETIMES_CONSUMES
110
111[Pcd]
112  gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange      ## SOMETIMES_CONSUMES
113  gEfiMdeModulePkgTokenSpaceGuid.PcdProgressCodeOsLoaderLoad                ## SOMETIMES_CONSUMES
114  gEfiMdeModulePkgTokenSpaceGuid.PcdProgressCodeOsLoaderStart               ## SOMETIMES_CONSUMES
115  gEfiMdeModulePkgTokenSpaceGuid.PcdErrorCodeSetVariable                    ## SOMETIMES_CONSUMES
116  gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile                     ## CONSUMES
117  gEfiMdeModulePkgTokenSpaceGuid.PcdDriverHealthConfigureForm               ## SOMETIMES_CONSUMES
118
119