]>
Commit | Line | Data |
---|---|---|
e386b444 | 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 | |
43fcd999 | 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 | |
e386b444 | 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) 2007, 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 | |
e386b444 | 20 | [Defines]\r |
21 | INF_VERSION = 0x00010005\r | |
22 | BASE_NAME = UefiLib\r | |
23 | FILE_GUID = 3a004ba5-efe0-4a61-9f1a-267a46ae5ba9\r | |
24 | MODULE_TYPE = DXE_DRIVER\r | |
25 | VERSION_STRING = 1.0\r | |
43fcd999 | 26 | LIBRARY_CLASS = UefiLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER\r |
e386b444 | 27 | EDK_RELEASE_VERSION = 0x00020000\r |
28 | EFI_SPECIFICATION_VERSION = 0x00020000\r | |
29 | \r | |
30 | \r | |
e386b444 | 31 | #\r |
32 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC\r | |
33 | #\r | |
34 | \r | |
e386b444 | 35 | [Sources.common]\r |
36 | UefiLibPrint.c\r | |
37 | UefiNotTiano.c\r | |
c7d265a9 | 38 | UefiDriverModel.c\r |
e386b444 | 39 | Console.c\r |
40 | UefiLib.c\r | |
f734a10a | 41 | UefiLibInternal.h\r |
e386b444 | 42 | \r |
43 | \r | |
e386b444 | 44 | [Packages]\r |
45 | MdePkg/MdePkg.dec\r | |
46 | \r | |
47 | \r | |
e386b444 | 48 | [LibraryClasses]\r |
49 | PrintLib\r | |
50 | PcdLib\r | |
51 | MemoryAllocationLib\r | |
52 | DebugLib\r | |
53 | BaseMemoryLib\r | |
54 | BaseLib\r | |
55 | UefiBootServicesTableLib\r | |
56 | \r | |
57 | \r | |
e386b444 | 58 | [Guids]\r |
e386b444 | 59 | gEfiEventReadyToBootGuid # ALWAYS_CONSUMED\r |
60 | gEfiEventLegacyBootGuid # ALWAYS_CONSUMED\r | |
61 | \r | |
62 | \r | |
63 | [Protocols]\r | |
64 | gEfiDriverBindingProtocolGuid # ALWAYS_CONSUMED\r | |
65 | gEfiComponentNameProtocolGuid # SOMETIMES_CONSUMED\r | |
dfbb4581 | 66 | gEfiComponentName2ProtocolGuid # SOMETIMES_CONSUMED\r |
e386b444 | 67 | gEfiDriverConfigurationProtocolGuid # SOMETIMES_CONSUMED\r |
68 | gEfiDriverDiagnosticsProtocolGuid # SOMETIMES_CONSUMED\r | |
dfbb4581 | 69 | gEfiDriverDiagnostics2ProtocolGuid # SOMETIMES_CONSUMED\r |
1c280088 | 70 | gEfiFirmwareVolume2ProtocolGuid # ALWAYS_CONSUMED\r |
dfbb4581 | 71 | \r |
e386b444 | 72 | \r |
1c280088 | 73 | [Pcd.common]\r |
b3af5df6 | 74 | gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize\r |
75 | \r | |
76 | [FeaturePcd.common]\r | |
77 | gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnosticsDisable\r | |
78 | gEfiMdePkgTokenSpaceGuid.PcdComponentNameDisable\r | |
79 | gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnostics2Disable\r | |
80 | gEfiMdePkgTokenSpaceGuid.PcdComponentName2Disable\r | |
e386b444 | 81 | \r |