]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdePkg/Library/UefiLib/UefiLib.inf
Update the implementation of EfiLibInstallAllDriverBinding2().
[mirror_edk2.git] / MdePkg / Library / UefiLib / UefiLib.inf
... / ...
CommitLineData
1#/** @file\r
2# Instance of UEFI Library.\r
3#\r
4# The UEFI Library provides functions and macros that simplify the development of \r
5# UEFI Drivers and UEFI Applications. These functions and macros help manage EFI \r
6# events, build simple locks utilizing EFI Task Priority Levels (TPLs), install \r
7# EFI Driver Model related protocols, manage Unicode string tables for UEFI Drivers, \r
8# and print messages on the console output and standard error devices.\r
9#\r
10# Copyright (c) 2007 - 2008, Intel Corporation\r
11#\r
12# All rights reserved. This program and the accompanying materials\r
13# are licensed and made available under the terms and conditions of the BSD License\r
14# which accompanies this distribution. The full text of the license may be found at\r
15# http://opensource.org/licenses/bsd-license.php\r
16# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
17# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
18#\r
19#\r
20#**/\r
21\r
22[Defines]\r
23 INF_VERSION = 0x00010005\r
24 BASE_NAME = UefiLib\r
25 FILE_GUID = 3a004ba5-efe0-4a61-9f1a-267a46ae5ba9\r
26 MODULE_TYPE = UEFI_DRIVER\r
27 VERSION_STRING = 1.0\r
28 LIBRARY_CLASS = UefiLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER\r
29 EDK_RELEASE_VERSION = 0x00020000\r
30\r
31\r
32#\r
33# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
34#\r
35\r
36[Sources.common]\r
37 UefiLibPrint.c\r
38 UefiNotTiano.c\r
39 UefiDriverModel.c\r
40 Console.c\r
41 UefiLib.c\r
42 UefiLibInternal.h\r
43\r
44\r
45[Packages]\r
46 MdePkg/MdePkg.dec\r
47\r
48\r
49[LibraryClasses]\r
50 PrintLib\r
51 PcdLib\r
52 MemoryAllocationLib\r
53 DebugLib\r
54 BaseMemoryLib\r
55 BaseLib\r
56 UefiBootServicesTableLib\r
57 UefiRuntimeServicesTableLib\r
58\r
59[Guids]\r
60 gEfiEventReadyToBootGuid # ALWAYS_CONSUMED\r
61 gEfiEventLegacyBootGuid # ALWAYS_CONSUMED\r
62\r
63\r
64[Protocols]\r
65 gEfiDriverBindingProtocolGuid # ALWAYS_CONSUMED\r
66 gEfiComponentNameProtocolGuid # SOMETIMES_CONSUMED\r
67 gEfiComponentName2ProtocolGuid # SOMETIMES_CONSUMED\r
68 gEfiDriverConfigurationProtocolGuid # SOMETIMES_CONSUMED\r
69 gEfiDriverDiagnosticsProtocolGuid # SOMETIMES_CONSUMED\r
70 gEfiDriverDiagnostics2ProtocolGuid # SOMETIMES_CONSUMED\r
71\r
72[Pcd.common]\r
73 gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize\r
74 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang\r
75\r
76[FeaturePcd.common]\r
77 gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnosticsDisable\r
78 gEfiMdePkgTokenSpaceGuid.PcdComponentNameDisable\r
79 gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnostics2Disable\r
80 gEfiMdePkgTokenSpaceGuid.PcdComponentName2Disable\r
81\r
82[Guids] \r
83 gEfiGlobalVariableGuid \r
84\r
85\r