Last change
on this file was 85718, checked in by vboxsync, 5 years ago |
Devices/EFI: Merge edk-stable202005 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.3 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # Instance of Debug Library using Console Output Device.
|
---|
3 | #
|
---|
4 | # Debug Lib that sends messages to the Console Output Device in the EFI System Table.
|
---|
5 | #
|
---|
6 | # Copyright (c) 2018, Microsoft Corporation
|
---|
7 | #
|
---|
8 | # Copyright (c) 2007 - 2019, Intel Corporation. All rights reserved.<BR>
|
---|
9 | #
|
---|
10 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
11 | #
|
---|
12 | #
|
---|
13 | ##
|
---|
14 |
|
---|
15 | [Defines]
|
---|
16 | INF_VERSION = 0x00010005
|
---|
17 | BASE_NAME = UefiDebugLibConOut
|
---|
18 | MODULE_UNI_FILE = UefiDebugLibConOut.uni
|
---|
19 | FILE_GUID = 5cddfaf3-e9a7-4d16-bdce-1e002df475bb
|
---|
20 | MODULE_TYPE = UEFI_DRIVER
|
---|
21 | VERSION_STRING = 1.0
|
---|
22 | LIBRARY_CLASS = DebugLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER UEFI_APPLICATION UEFI_DRIVER
|
---|
23 |
|
---|
24 | CONSTRUCTOR = DxeDebugLibConstructor
|
---|
25 | DESTRUCTOR = DxeDebugLibDestructor
|
---|
26 |
|
---|
27 | #
|
---|
28 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
29 | #
|
---|
30 |
|
---|
31 |
|
---|
32 | [Sources]
|
---|
33 | DebugLib.c
|
---|
34 | DebugLibConstructor.c
|
---|
35 |
|
---|
36 |
|
---|
37 |
|
---|
38 | [Packages]
|
---|
39 | MdePkg/MdePkg.dec
|
---|
40 |
|
---|
41 |
|
---|
42 | [LibraryClasses]
|
---|
43 | BaseMemoryLib
|
---|
44 | BaseLib
|
---|
45 | PcdLib
|
---|
46 | PrintLib
|
---|
47 | DebugPrintErrorLevelLib
|
---|
48 |
|
---|
49 | [Pcd]
|
---|
50 | gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue ## SOMETIMES_CONSUMES
|
---|
51 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask ## CONSUMES
|
---|
52 | gEfiMdePkgTokenSpaceGuid.PcdFixedDebugPrintErrorLevel ## CONSUMES
|
---|
53 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.