2007-06-22 08:57:39 +02:00
|
|
|
#/** @file
|
2008-10-28 10:45:52 +01:00
|
|
|
# Instance of UEFI Library.
|
|
|
|
#
|
|
|
|
# The UEFI Library provides functions and macros that simplify the development of
|
2008-10-10 10:06:02 +02:00
|
|
|
# UEFI Drivers and UEFI Applications. These functions and macros help manage EFI
|
|
|
|
# events, build simple locks utilizing EFI Task Priority Levels (TPLs), install
|
|
|
|
# EFI Driver Model related protocols, manage Unicode string tables for UEFI Drivers,
|
|
|
|
# and print messages on the console output and standard error devices.
|
2007-06-22 08:57:39 +02:00
|
|
|
#
|
2008-10-28 10:45:52 +01:00
|
|
|
# Copyright (c) 2007 - 2008, Intel Corporation
|
|
|
|
#
|
2007-06-22 08:57:39 +02:00
|
|
|
# All rights reserved. This program and the accompanying materials
|
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#**/
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = UefiLib
|
|
|
|
FILE_GUID = 3a004ba5-efe0-4a61-9f1a-267a46ae5ba9
|
2008-09-19 08:22:44 +02:00
|
|
|
MODULE_TYPE = UEFI_DRIVER
|
2007-06-22 08:57:39 +02:00
|
|
|
VERSION_STRING = 1.0
|
2007-06-22 11:14:23 +02:00
|
|
|
LIBRARY_CLASS = UefiLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER
|
2007-06-22 08:57:39 +02:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
|
|
|
|
|
|
|
[Sources.common]
|
|
|
|
UefiLibPrint.c
|
|
|
|
UefiNotTiano.c
|
2007-06-22 18:22:26 +02:00
|
|
|
UefiDriverModel.c
|
2007-06-22 08:57:39 +02:00
|
|
|
Console.c
|
|
|
|
UefiLib.c
|
2007-06-30 01:22:13 +02:00
|
|
|
UefiLibInternal.h
|
2007-06-22 08:57:39 +02:00
|
|
|
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
PrintLib
|
|
|
|
PcdLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
DebugLib
|
|
|
|
BaseMemoryLib
|
|
|
|
BaseLib
|
|
|
|
UefiBootServicesTableLib
|
2008-11-11 16:39:02 +01:00
|
|
|
DevicePathLib
|
2009-03-24 15:18:13 +01:00
|
|
|
UefiRuntimeServicesTableLib
|
2008-11-11 16:39:02 +01:00
|
|
|
|
2007-06-22 08:57:39 +02:00
|
|
|
[Guids]
|
2009-01-09 05:03:39 +01:00
|
|
|
gEfiEventReadyToBootGuid ## CONSUMES ## Event
|
|
|
|
gEfiEventLegacyBootGuid ## CONSUMES ## Event
|
2009-03-24 15:18:13 +01:00
|
|
|
gEfiGlobalVariableGuid ## CONSUMES ## Variable
|
2007-06-22 08:57:39 +02:00
|
|
|
|
|
|
|
[Protocols]
|
2009-01-14 08:58:44 +01:00
|
|
|
gEfiDriverBindingProtocolGuid ## PRODUCES
|
|
|
|
gEfiSimpleTextOutProtocolGuid ## CONSUMES
|
|
|
|
gEfiGraphicsOutputProtocolGuid ## CONSUMES
|
|
|
|
gEfiHiiFontProtocolGuid ## CONSUMES
|
|
|
|
gEfiUgaDrawProtocolGuid | PcdUgaConsumeSupport ## SOMETIMES_CONSUMES (Consumes if gEfiGraphicsOutputProtocolGuid uninstalled)
|
|
|
|
gEfiComponentNameProtocolGuid | NOT PcdComponentNameDisable ## SOMETIMES_PRODUCES (User chooses to produce it)
|
|
|
|
gEfiComponentName2ProtocolGuid | NOT PcdComponentName2Disable ## SOMETIMES_PRODUCES (User chooses to produce it)
|
|
|
|
gEfiDriverConfigurationProtocolGuid ## SOMETIMES_CONSUMES (User chooses to produce it)
|
|
|
|
gEfiDriverConfiguration2ProtocolGuid ## SOMETIMES_CONSUMES (User chooses to produce it)
|
|
|
|
gEfiDriverDiagnosticsProtocolGuid | NOT PcdDriverDiagnosticsDisable ## SOMETIMES_CONSUMES (User chooses to produce it)
|
|
|
|
gEfiDriverDiagnostics2ProtocolGuid| NOT PcdDriverDiagnostics2Disable ## SOMETIMES_CONSUMES (User chooses to produce it)
|
2008-11-20 04:08:28 +01:00
|
|
|
|
2007-06-22 08:57:39 +02:00
|
|
|
|
2007-09-04 08:11:47 +02:00
|
|
|
[Pcd.common]
|
2009-01-09 05:03:39 +01:00
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize ## CONSUMES
|
2007-08-30 11:11:54 +02:00
|
|
|
|
|
|
|
[FeaturePcd.common]
|
2009-01-09 05:03:39 +01:00
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnosticsDisable ## CONSUMES
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdComponentNameDisable ## CONSUMES
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnostics2Disable ## CONSUMES
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdComponentName2Disable ## CONSUMES
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport ## CONSUMES
|
2008-09-21 10:50:52 +02:00
|
|
|
|
|
|
|
|