2015-05-13 04:23:44 +02:00
|
|
|
## @file
|
|
|
|
# Define and produce general Boot Manager related interfaces.
|
2015-05-15 10:47:31 +02:00
|
|
|
#
|
|
|
|
# The implementation provides richful library functions supporting load option
|
|
|
|
# manipulation, hotkey registration, UEFI boot, connect/disconnect, console
|
|
|
|
# manipulation, driver health checking and etc.
|
|
|
|
#
|
2019-12-24 03:57:47 +01:00
|
|
|
# Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
|
2018-01-24 06:36:09 +01:00
|
|
|
# Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
2016-06-03 09:21:26 +02:00
|
|
|
# (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
|
2019-04-04 01:05:13 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2015-05-15 10:47:31 +02:00
|
|
|
#
|
2015-05-13 04:23:44 +02:00
|
|
|
##
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = UefiBootManagerLib
|
2015-05-15 10:47:31 +02:00
|
|
|
MODULE_UNI_FILE = UefiBootManagerLib.uni
|
2015-05-13 04:23:44 +02:00
|
|
|
FILE_GUID = 8D4752BC-595E-49a2-B4AF-F3F57B601DE9
|
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
2018-06-27 15:08:52 +02:00
|
|
|
LIBRARY_CLASS = UefiBootManagerLib|DXE_DRIVER DXE_RUNTIME_DRIVER UEFI_APPLICATION UEFI_DRIVER
|
2015-05-13 04:23:44 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
2018-06-29 05:27:00 +02:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC
|
2015-05-13 04:23:44 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
[Sources]
|
|
|
|
BmConnect.c
|
|
|
|
BmMisc.c
|
|
|
|
BmConsole.c
|
|
|
|
BmBoot.c
|
2016-03-04 09:34:43 +01:00
|
|
|
BmBootDescription.c
|
2015-05-13 04:23:44 +02:00
|
|
|
BmLoadOption.c
|
|
|
|
BmHotkey.c
|
|
|
|
BmDriverHealth.c
|
|
|
|
InternalBm.h
|
2018-06-27 15:08:52 +02:00
|
|
|
|
2015-05-13 04:23:44 +02:00
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
HobLib
|
|
|
|
PcdLib
|
|
|
|
BaseLib
|
|
|
|
UefiLib
|
|
|
|
DebugLib
|
|
|
|
PrintLib
|
|
|
|
BaseMemoryLib
|
|
|
|
DevicePathLib
|
|
|
|
PerformanceLib
|
|
|
|
PeCoffGetEntryPointLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
UefiRuntimeServicesTableLib
|
|
|
|
DxeServicesTableLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
DxeServicesLib
|
|
|
|
ReportStatusCodeLib
|
|
|
|
PerformanceLib
|
|
|
|
HiiLib
|
|
|
|
SortLib
|
|
|
|
|
|
|
|
[Guids]
|
2017-02-15 09:40:07 +01:00
|
|
|
## SOMETIMES_CONSUMES ## SystemTable (The identifier of memory type information type in system table)
|
|
|
|
## SOMETIMES_CONSUMES ## HOB (The hob holding memory type information)
|
|
|
|
## SOMETIMES_CONSUMES ## Variable:L"MemoryTypeInformation."
|
|
|
|
## SOMETIMES_PRODUCES ## Variable:L"MemoryTypeInformation."
|
|
|
|
gEfiMemoryTypeInformationGuid
|
|
|
|
|
|
|
|
## SOMETIMES_PRODUCES ## Variable:L"BootCurrent" (The boot option of current boot)
|
|
|
|
## SOMETIMES_CONSUMES ## Variable:L"BootXX" (Boot option variable)
|
|
|
|
## SOMETIMES_CONSUMES ## Variable:L"BootOrder" (The boot option array)
|
|
|
|
## SOMETIMES_CONSUMES ## Variable:L"DriverOrder" (The driver order list)
|
|
|
|
## SOMETIMES_CONSUMES ## Variable:L"ConIn" (The device path of console in device)
|
|
|
|
## SOMETIMES_CONSUMES ## Variable:L"ConOut" (The device path of console out device)
|
|
|
|
## SOMETIMES_CONSUMES ## Variable:L"ErrOut" (The device path of error out device)
|
|
|
|
gEfiGlobalVariableGuid
|
|
|
|
|
2015-05-13 04:23:44 +02:00
|
|
|
gEdkiiStatusCodeDataTypeVariableGuid ## SOMETIMES_CONSUMES ## GUID
|
|
|
|
gEfiDiskInfoAhciInterfaceGuid ## SOMETIMES_CONSUMES ## GUID
|
|
|
|
gEfiDiskInfoIdeInterfaceGuid ## SOMETIMES_CONSUMES ## GUID
|
|
|
|
gEfiDiskInfoScsiInterfaceGuid ## SOMETIMES_CONSUMES ## GUID
|
2017-09-04 04:18:41 +02:00
|
|
|
gEfiDiskInfoSdMmcInterfaceGuid ## SOMETIMES_CONSUMES ## GUID
|
2015-05-13 04:23:44 +02:00
|
|
|
|
|
|
|
[Protocols]
|
|
|
|
gEfiPciRootBridgeIoProtocolGuid ## CONSUMES
|
2017-02-15 09:40:07 +01:00
|
|
|
gEfiSimpleFileSystemProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiLoadFileProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiSimpleTextOutProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiPciIoProtocolGuid ## SOMETIMES_CONSUMES
|
2015-05-13 04:23:44 +02:00
|
|
|
gEfiLoadedImageProtocolGuid ## CONSUMES
|
2017-02-15 09:40:07 +01:00
|
|
|
gEfiSimpleNetworkProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiSimpleTextInProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiBlockIoProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiFirmwareVolume2ProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiDevicePathProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiBootLogoProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiSimpleTextInputExProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEdkiiVariableLockProtocolGuid ## SOMETIMES_CONSUMES
|
2015-05-13 04:23:44 +02:00
|
|
|
gEfiGraphicsOutputProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiUsbIoProtocolGuid ## SOMETIMES_CONSUMES
|
2017-03-10 08:41:21 +01:00
|
|
|
gEfiNvmExpressPassThruProtocolGuid ## SOMETIMES_CONSUMES
|
2015-05-13 04:23:44 +02:00
|
|
|
gEfiDiskInfoProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiDriverHealthProtocolGuid ## SOMETIMES_CONSUMES
|
2015-06-11 04:01:26 +02:00
|
|
|
gEfiFormBrowser2ProtocolGuid ## SOMETIMES_CONSUMES
|
2016-03-30 02:29:10 +02:00
|
|
|
gEfiRamDiskProtocolGuid ## SOMETIMES_CONSUMES
|
2017-02-15 09:40:07 +01:00
|
|
|
gEfiDeferredImageLoadProtocolGuid ## SOMETIMES_CONSUMES
|
2019-12-24 03:57:47 +01:00
|
|
|
gEdkiiPlatformBootManagerProtocolGuid ## SOMETIMES_CONSUMES
|
2015-05-13 04:23:44 +02:00
|
|
|
|
|
|
|
[Pcd]
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange ## SOMETIMES_CONSUMES
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdProgressCodeOsLoaderLoad ## SOMETIMES_CONSUMES
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdProgressCodeOsLoaderStart ## SOMETIMES_CONSUMES
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdErrorCodeSetVariable ## SOMETIMES_CONSUMES
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile ## CONSUMES
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdDriverHealthConfigureForm ## SOMETIMES_CONSUMES
|
2016-06-03 09:21:26 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdMaxRepairCount ## CONSUMES
|