]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/UefiLib/UefiLib.inf
Refine file header for INF files of MDE library instances.
[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 EFI_SPECIFICATION_VERSION = 0x00020000
31
32
33 #
34 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
35 #
36
37 [Sources.common]
38 UefiLibPrint.c
39 UefiNotTiano.c
40 UefiDriverModel.c
41 Console.c
42 UefiLib.c
43 UefiLibInternal.h
44
45
46 [Packages]
47 MdePkg/MdePkg.dec
48
49
50 [LibraryClasses]
51 PrintLib
52 PcdLib
53 MemoryAllocationLib
54 DebugLib
55 BaseMemoryLib
56 BaseLib
57 UefiBootServicesTableLib
58 UefiRuntimeServicesTableLib
59
60 [Guids]
61 gEfiEventReadyToBootGuid # ALWAYS_CONSUMED
62 gEfiEventLegacyBootGuid # ALWAYS_CONSUMED
63
64
65 [Protocols]
66 gEfiDriverBindingProtocolGuid # ALWAYS_CONSUMED
67 gEfiComponentNameProtocolGuid # SOMETIMES_CONSUMED
68 gEfiComponentName2ProtocolGuid # SOMETIMES_CONSUMED
69 gEfiDriverConfigurationProtocolGuid # 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