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