2011-03-10 23:15:38 +01:00
|
|
|
## @file
|
2014-08-28 08:34:06 +02:00
|
|
|
# Debug Print Error Level library instance that provide compatibility with the "err" shell command.
|
|
|
|
# This includes support for the Debug Mask Protocol supports for global debug print error level mask
|
|
|
|
# stored in an EFI Variable. This library instance only support DXE Phase modules.
|
2011-03-10 23:15:38 +01:00
|
|
|
#
|
2018-06-27 15:08:52 +02:00
|
|
|
# Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
|
2011-03-10 23:15:38 +01:00
|
|
|
#
|
|
|
|
# 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 = DxeDebugPrintErrorLevelLib
|
2014-08-28 08:34:06 +02:00
|
|
|
MODULE_UNI_FILE = DxeDebugPrintErrorLevelLib.uni
|
2011-03-10 23:15:38 +01:00
|
|
|
FILE_GUID = 1D564EC9-9373-49a4-9E3F-E4D7B9974C84
|
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
2018-06-29 05:27:00 +02:00
|
|
|
LIBRARY_CLASS = DebugPrintErrorLevelLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER UEFI_APPLICATION UEFI_DRIVER
|
2011-03-10 23:15:38 +01:00
|
|
|
CONSTRUCTOR = DxeDebugPrintErrorLevelLibConstructor
|
|
|
|
DESTRUCTOR = DxeDebugPrintErrorLevelLibDestructor
|
|
|
|
|
|
|
|
#
|
2018-06-29 05:27:00 +02:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC
|
2011-03-10 23:15:38 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
[Sources]
|
|
|
|
DxeDebugPrintErrorLevelLib.c
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
PcdLib
|
2011-10-08 23:00:13 +02:00
|
|
|
HobLib
|
2018-06-27 15:08:52 +02:00
|
|
|
|
2011-03-10 23:15:38 +01:00
|
|
|
[Protocols]
|
2014-08-28 08:34:06 +02:00
|
|
|
gEfiDebugMaskProtocolGuid ## PRODUCES
|
2018-06-27 15:08:52 +02:00
|
|
|
|
2011-03-10 23:15:38 +01:00
|
|
|
[Guids]
|
2014-08-28 08:34:06 +02:00
|
|
|
## SOMETIMES_PRODUCES ## Variable:L"EFIDebug"
|
|
|
|
## SOMETIMES_CONSUMES ## Variable:L"EFIDebug"
|
|
|
|
## SOMETIMES_CONSUMES ## HOB
|
|
|
|
gEfiGenericVariableGuid
|
2011-03-10 23:15:38 +01:00
|
|
|
|
|
|
|
[Pcd]
|
2014-08-28 08:34:06 +02:00
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel ## CONSUMES
|