]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/UefiLib/UefiLib.inf
6f6d034d527684331b2b170ebdb084f957a296c5
[mirror_edk2.git] / MdePkg / Library / UefiLib / UefiLib.inf
1 #/** @file
2 # Component description file for the entry point to a EFIDXE Drivers
3 #
4 # Library to abstract Framework extensions that conflict with UEFI 2.0 Specification
5 #
6 # Help Port Framework/Tinao code that has conflicts with UEFI 2.0 by hiding the oldconflicts with library functions and supporting implementations of the old
7 # (EDK/EFI 1.10) and new (EDK II/UEFI 2.0) way. This module is a DXE driver as it contains DXE enum extensions for EFI event services.
8 # Copyright (c) 2007, Intel Corporation.
9 #
10 # All rights reserved. This program and the accompanying materials
11 # are licensed and made available under the terms and conditions of the BSD License
12 # which accompanies this distribution. The full text of the license may be found at
13 # http://opensource.org/licenses/bsd-license.php
14 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16 #
17 #
18 #**/
19
20 ################################################################################
21 #
22 # Defines Section - statements that will be processed to create a Makefile.
23 #
24 ################################################################################
25 [Defines]
26 INF_VERSION = 0x00010005
27 BASE_NAME = UefiLib
28 FILE_GUID = 3a004ba5-efe0-4a61-9f1a-267a46ae5ba9
29 MODULE_TYPE = DXE_DRIVER
30 VERSION_STRING = 1.0
31 LIBRARY_CLASS = UefiLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER
32 EDK_RELEASE_VERSION = 0x00020000
33 EFI_SPECIFICATION_VERSION = 0x00020000
34
35
36 #
37 # The following information is for reference only and not required by the build tools.
38 #
39 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
40 #
41
42 ################################################################################
43 #
44 # Sources Section - list of files that are required for the build to succeed.
45 #
46 ################################################################################
47
48 [Sources.common]
49 UefiLibPrint.c
50 UefiNotTiano.c
51 UefiDriverModel.c
52 Console.c
53 UefiLib.c
54 CommonHeader.h
55
56
57 ################################################################################
58 #
59 # Package Dependency Section - list of Package files that are required for
60 # this module.
61 #
62 ################################################################################
63
64 [Packages]
65 MdePkg/MdePkg.dec
66
67
68 ################################################################################
69 #
70 # Library Class Section - list of Library Classes that are required for
71 # this module.
72 #
73 ################################################################################
74
75 [LibraryClasses]
76 PrintLib
77 PcdLib
78 MemoryAllocationLib
79 DebugLib
80 BaseMemoryLib
81 BaseLib
82 UefiBootServicesTableLib
83
84
85 ################################################################################
86 #
87 # Guid C Name Section - list of Guids that this module uses or produces.
88 #
89 ################################################################################
90
91 [Guids]
92 gEfiEventReadyToBootGuid # ALWAYS_CONSUMED
93 gEfiEventLegacyBootGuid # ALWAYS_CONSUMED
94
95
96 [Protocols]
97 gEfiDriverBindingProtocolGuid # ALWAYS_CONSUMED
98 gEfiComponentNameProtocolGuid # SOMETIMES_CONSUMED
99 gEfiComponentName2ProtocolGuid # SOMETIMES_CONSUMED
100 gEfiDriverConfigurationProtocolGuid # SOMETIMES_CONSUMED
101 gEfiDriverDiagnosticsProtocolGuid # SOMETIMES_CONSUMED
102 gEfiDriverDiagnostics2ProtocolGuid # SOMETIMES_CONSUMED
103
104
105 ################################################################################
106 #
107 # Pcd FIXED_AT_BUILD - list of PCDs that this module is coded for.
108 #
109 ################################################################################
110
111 [PcdsFixedAtBuild.common]
112 PcdUefiLibMaxPrintBufferSize|gEfiMdePkgTokenSpaceGuid
113
114 [PcdsFeatureFlag.common]
115 PcdDriverDiagnosticsDisable|gEfiMdePkgTokenSpaceGuid
116 PcdComponentNameDisable|gEfiMdePkgTokenSpaceGuid
117 PcdDriverDiagnostics2Disable|gEfiMdePkgTokenSpaceGuid
118 PcdComponentName2Disable|gEfiMdePkgTokenSpaceGuid
119