• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2#  Instance of Debug Library based on Serial Port Library.
3#  It uses Print Library to produce formatted output strings to seiral port device.
4#
5#  Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
6#
7#  This program and the accompanying materials
8#  are licensed and made available under the terms and conditions of the BSD License
9#  which accompanies this distribution. The full text of the license may be found at
10#  http://opensource.org/licenses/bsd-license.php.
11#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13#
14#
15##
16
17[Defines]
18  INF_VERSION                    = 0x00010005
19  BASE_NAME                      = BaseDebugLibSerialPort
20  MODULE_UNI_FILE                = BaseDebugLibSerialPort.uni
21  FILE_GUID                      = BB83F95F-EDBC-4884-A520-CD42AF388FAE
22  MODULE_TYPE                    = BASE
23  VERSION_STRING                 = 1.0
24  LIBRARY_CLASS                  = DebugLib
25  CONSTRUCTOR                    = BaseDebugLibSerialPortConstructor
26
27#
28#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
29#
30
31[Sources]
32  DebugLib.c
33
34[Packages]
35  MdePkg/MdePkg.dec
36
37[LibraryClasses]
38  SerialPortLib
39  BaseMemoryLib
40  PcdLib
41  PrintLib
42  BaseLib
43  DebugPrintErrorLevelLib
44
45[Pcd]
46  gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue  ## SOMETIMES_CONSUMES
47  gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask      ## CONSUMES
48  gEfiMdePkgTokenSpaceGuid.PcdFixedDebugPrintErrorLevel ## CONSUMES
49
50