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