mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
49 lines
1.4 KiB
INI
Executable File
49 lines
1.4 KiB
INI
Executable File
## @file
|
|
#
|
|
# Instance of Debug Library based on Serial Port Library.
|
|
# It uses Print Library to produce formatted output strings to seiral port device.
|
|
#
|
|
# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
|
# Copyright (C) 2020, Goldfish64. All rights reserved.<BR>
|
|
#
|
|
# 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 = OcDebugLibSerial
|
|
FILE_GUID = 8F70EE5B-D935-4C37-AEF6-BE02920AF30C
|
|
MODULE_TYPE = BASE
|
|
VERSION_STRING = 1.0
|
|
LIBRARY_CLASS = DebugLib
|
|
CONSTRUCTOR = BaseDebugLibSerialPortConstructor
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC
|
|
|
|
[Sources]
|
|
OcDebugLibSerial.c
|
|
|
|
[Packages]
|
|
OpenCorePkg/OpenCorePkg.dec
|
|
MdePkg/MdePkg.dec
|
|
|
|
[LibraryClasses]
|
|
SerialPortLib
|
|
BaseMemoryLib
|
|
PcdLib
|
|
PrintLib
|
|
BaseLib
|
|
DebugPrintErrorLevelLib
|
|
|
|
[Pcd]
|
|
gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue ## SOMETIMES_CONSUMES
|
|
gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask ## CONSUMES
|
|
gEfiMdePkgTokenSpaceGuid.PcdFixedDebugPrintErrorLevel ## CONSUMES
|