b51e6bc4 |
1 | #/** @file\r |
2 | # Component description file for the entry point to a EFIDXE Drivers\r |
3 | #\r |
4 | # Library to abstract Framework extensions that conflict with UEFI 2.0 Specification\r |
5 | #\r |
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\r |
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.\r |
8 | # Copyright (c) 2006, Intel Corporation.\r |
9 | #\r |
10 | # All rights reserved. This program and the accompanying materials\r |
11 | # are licensed and made available under the terms and conditions of the BSD License\r |
12 | # which accompanies this distribution. The full text of the license may be found at\r |
13 | # http://opensource.org/licenses/bsd-license.php\r |
14 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r |
15 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r |
16 | #\r |
17 | #\r |
18 | #**/\r |
19 | \r |
20 | ################################################################################\r |
21 | #\r |
22 | # Defines Section - statements that will be processed to create a Makefile.\r |
23 | #\r |
24 | ################################################################################\r |
25 | [Defines]\r |
26 | INF_VERSION = 0x00010005\r |
27 | BASE_NAME = UefiLib\r |
28 | FILE_GUID = 3a004ba5-efe0-4a61-9f1a-267a46ae5ba9\r |
29 | MODULE_TYPE = DXE_DRIVER\r |
30 | VERSION_STRING = 1.0\r |
31 | LIBRARY_CLASS = UefiLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER\r |
32 | EDK_RELEASE_VERSION = 0x00020000\r |
33 | EFI_SPECIFICATION_VERSION = 0x00020000\r |
34 | \r |
35 | \r |
36 | #\r |
37 | # The following information is for reference only and not required by the build tools.\r |
38 | #\r |
39 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC\r |
40 | #\r |
41 | \r |
42 | ################################################################################\r |
43 | #\r |
44 | # Sources Section - list of files that are required for the build to succeed.\r |
45 | #\r |
46 | ################################################################################\r |
47 | \r |
48 | [Sources.common]\r |
49 | UefiLibPrint.c\r |
50 | UefiNotTiano.c\r |
51 | Console.c\r |
52 | UefiLib.c\r |
53 | \r |
54 | \r |
b51e6bc4 |
55 | ################################################################################\r |
56 | #\r |
57 | # Package Dependency Section - list of Package files that are required for\r |
58 | # this module.\r |
59 | #\r |
60 | ################################################################################\r |
61 | \r |
62 | [Packages]\r |
63 | MdePkg/MdePkg.dec\r |
64 | \r |
65 | \r |
66 | ################################################################################\r |
67 | #\r |
68 | # Library Class Section - list of Library Classes that are required for\r |
69 | # this module.\r |
70 | #\r |
71 | ################################################################################\r |
72 | \r |
73 | [LibraryClasses]\r |
74 | PrintLib\r |
75 | PcdLib\r |
76 | MemoryAllocationLib\r |
77 | DebugLib\r |
78 | BaseMemoryLib\r |
79 | BaseLib\r |
80 | UefiBootServicesTableLib\r |
81 | \r |
82 | \r |
83 | ################################################################################\r |
84 | #\r |
85 | # Guid C Name Section - list of Guids that this module uses or produces.\r |
86 | #\r |
87 | ################################################################################\r |
88 | \r |
89 | [Guids]\r |
90 | gEfiFrameworkDevicePathGuid # ALWAYS_CONSUMED\r |
91 | gEfiEventReadyToBootGuid # ALWAYS_CONSUMED\r |
92 | gEfiEventLegacyBootGuid # ALWAYS_CONSUMED\r |
93 | \r |
94 | \r |
95 | ################################################################################\r |
96 | #\r |
97 | # Pcd FIXED_AT_BUILD - list of PCDs that this module is coded for.\r |
98 | #\r |
99 | ################################################################################\r |
100 | \r |
101 | [PcdsFixedAtBuild.common]\r |
102 | PcdUefiLibMaxPrintBufferSize|gEfiMdePkgTokenSpaceGuid\r |
103 | \r |