1 | ## @file
|
---|
2 | # Instance of Post Code Library based on Debug Library.
|
---|
3 | #
|
---|
4 | # Post Code Library that uses DebugLib service to send PostCode.
|
---|
5 | # It layers on top of a Debug Library instance.
|
---|
6 | #
|
---|
7 | # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
8 | #
|
---|
9 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
10 | #
|
---|
11 | #
|
---|
12 | ##
|
---|
13 |
|
---|
14 | [Defines]
|
---|
15 | INF_VERSION = 0x00010005
|
---|
16 | BASE_NAME = BasePostCodeLibDebug
|
---|
17 | MODULE_UNI_FILE = BasePostCodeLibDebug.uni
|
---|
18 | FILE_GUID = 19e3bbba-beb1-43e8-b32d-9acbb22c7639
|
---|
19 | MODULE_TYPE = BASE
|
---|
20 | VERSION_STRING = 1.0
|
---|
21 | LIBRARY_CLASS = PostCodeLib
|
---|
22 |
|
---|
23 |
|
---|
24 | #
|
---|
25 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
26 | #
|
---|
27 |
|
---|
28 |
|
---|
29 | [Sources]
|
---|
30 | PostCode.c
|
---|
31 |
|
---|
32 |
|
---|
33 | [Packages]
|
---|
34 | MdePkg/MdePkg.dec
|
---|
35 |
|
---|
36 |
|
---|
37 |
|
---|
38 | [LibraryClasses]
|
---|
39 | PcdLib
|
---|
40 | DebugLib
|
---|
41 |
|
---|
42 |
|
---|
43 | [Pcd]
|
---|
44 | gEfiMdePkgTokenSpaceGuid.PcdPostCodePropertyMask ## CONSUMES
|
---|
45 |
|
---|