]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdePkg/Library/UefiLib/UefiLib.inf
Minor grammatical work--mostly adding periods. Items with ONLY period added did...
[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 - 2010, Intel Corporation. All rights reserved.<BR>\r
11#\r
12# 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 SMM_CORE\r
29\r
30\r
31#\r
32# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
33#\r
34\r
35[Sources]\r
36 UefiLibPrint.c\r
37 UefiNotTiano.c\r
38 UefiDriverModel.c\r
39 Console.c\r
40 UefiLib.c\r
41 UefiLibInternal.h\r
42\r
43\r
44[Packages]\r
45 MdePkg/MdePkg.dec\r
46\r
47\r
48[LibraryClasses]\r
49 PrintLib\r
50 PcdLib\r
51 MemoryAllocationLib\r
52 DebugLib\r
53 BaseMemoryLib\r
54 BaseLib\r
55 UefiBootServicesTableLib\r
56 DevicePathLib\r
57 UefiRuntimeServicesTableLib\r
58 \r
59[Guids]\r
60 gEfiEventReadyToBootGuid ## CONSUMES ## Event\r
61 gEfiEventLegacyBootGuid ## CONSUMES ## Event\r
62 gEfiGlobalVariableGuid ## CONSUMES ## Variable\r
63\r
64[Protocols]\r
65 gEfiDriverBindingProtocolGuid ## PRODUCES\r
66 gEfiSimpleTextOutProtocolGuid ## CONSUMES\r
67 gEfiGraphicsOutputProtocolGuid ## CONSUMES\r
68 gEfiHiiFontProtocolGuid ## CONSUMES\r
69 gEfiUgaDrawProtocolGuid | PcdUgaConsumeSupport ## SOMETIMES_CONSUMES (Consumes if gEfiGraphicsOutputProtocolGuid uninstalled)\r
70 gEfiComponentNameProtocolGuid | NOT PcdComponentNameDisable ## SOMETIMES_PRODUCES (User chooses to produce it)\r
71 gEfiComponentName2ProtocolGuid | NOT PcdComponentName2Disable ## SOMETIMES_PRODUCES (User chooses to produce it)\r
72 gEfiDriverConfigurationProtocolGuid ## SOMETIMES_CONSUMES (User chooses to produce it)\r
73 gEfiDriverConfiguration2ProtocolGuid ## SOMETIMES_CONSUMES (User chooses to produce it)\r
74 gEfiDriverDiagnosticsProtocolGuid | NOT PcdDriverDiagnosticsDisable ## SOMETIMES_CONSUMES (User chooses to produce it)\r
75 gEfiDriverDiagnostics2ProtocolGuid| NOT PcdDriverDiagnostics2Disable ## SOMETIMES_CONSUMES (User chooses to produce it)\r
76\r
77\r
78[Pcd]\r
79 gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize ## CONSUMES\r
80\r
81[FeaturePcd]\r
82 gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnosticsDisable ## CONSUMES\r
83 gEfiMdePkgTokenSpaceGuid.PcdComponentNameDisable ## CONSUMES\r
84 gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnostics2Disable ## CONSUMES\r
85 gEfiMdePkgTokenSpaceGuid.PcdComponentName2Disable ## CONSUMES\r
86 gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport ## CONSUMES\r
87\r
88\r