1 | ## @file
|
---|
2 | # Initialized Debug Agent in PEI phase.
|
---|
3 | #
|
---|
4 | # This PEIM will invoke Debug Agent Library to initialize the debug agent in
|
---|
5 | # whole PEI phase.
|
---|
6 | #
|
---|
7 | # Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
8 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | #
|
---|
10 | ##
|
---|
11 |
|
---|
12 | [Defines]
|
---|
13 | INF_VERSION = 0x00010005
|
---|
14 | BASE_NAME = DebugAgentPei
|
---|
15 | MODULE_UNI_FILE = DebugAgentPei.uni
|
---|
16 | FILE_GUID = D9D114EF-F40B-4d48-AAA0-A3DC99C9F5BD
|
---|
17 | MODULE_TYPE = PEIM
|
---|
18 | VERSION_STRING = 1.0
|
---|
19 | ENTRY_POINT = DebugAgentPeiInitialize
|
---|
20 |
|
---|
21 | #
|
---|
22 | # The following information is for reference only and not required by the build tools.
|
---|
23 | #
|
---|
24 | # VALID_ARCHITECTURES = IA32 X64
|
---|
25 | #
|
---|
26 |
|
---|
27 | [Sources]
|
---|
28 | DebugAgentPei.c
|
---|
29 |
|
---|
30 | [Packages]
|
---|
31 | MdePkg/MdePkg.dec
|
---|
32 | MdeModulePkg/MdeModulePkg.dec
|
---|
33 |
|
---|
34 | [LibraryClasses]
|
---|
35 | PeimEntryPoint
|
---|
36 | DebugAgentLib
|
---|
37 |
|
---|
38 | [Depex]
|
---|
39 | TRUE
|
---|
40 |
|
---|
41 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
42 | DebugAgentPeiExtra.uni
|
---|