2007-07-03 11:57:29 +02:00
|
|
|
#/** @file
|
2008-10-28 10:45:52 +01:00
|
|
|
# Instance of Debug Library based on Serial Port Library.
|
|
|
|
# It uses Print Library to produce formatted output strings.
|
2007-07-03 11:57:29 +02:00
|
|
|
#
|
2008-07-15 13:12:43 +02:00
|
|
|
# Copyright (c) 2006 - 2008, Intel Corporation.
|
2007-07-03 11:57:29 +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
|
2008-07-19 03:32:53 +02:00
|
|
|
BASE_NAME = BaseDebugLibSerialPort
|
2007-07-03 11:57:29 +02:00
|
|
|
FILE_GUID = BB83F95F-EDBC-4884-A520-CD42AF388FAE
|
2007-11-27 03:48:59 +01:00
|
|
|
MODULE_TYPE = BASE
|
2007-07-03 11:57:29 +02:00
|
|
|
VERSION_STRING = 1.0
|
|
|
|
LIBRARY_CLASS = DebugLib
|
|
|
|
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
|
|
|
|
|
|
|
[Sources.common]
|
|
|
|
DebugLib.c
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
SerialPortLib
|
|
|
|
BaseMemoryLib
|
|
|
|
PcdLib
|
|
|
|
PrintLib
|
|
|
|
BaseLib
|
|
|
|
|
2007-08-30 11:11:54 +02:00
|
|
|
[Pcd.common]
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel
|
2007-09-04 08:11:47 +02:00
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask
|
2007-07-03 11:57:29 +02:00
|
|
|
|