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