c1f23d63 |
1 | #/** @file\r |
2 | # Component description file for DebugSupport module.\r |
3 | #\r |
4 | # This driver installs DebugSupport protocol for the selected processor.\r |
5 | # Copyright (c) 2006 - 2007, Intel Corporation\r |
6 | #\r |
7 | # All rights reserved. This program and the accompanying materials\r |
8 | # are licensed and made available under the terms and conditions of the BSD License\r |
9 | # which accompanies this distribution. The full text of the license may be found at\r |
10 | # http://opensource.org/licenses/bsd-license.php\r |
11 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r |
12 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r |
13 | #\r |
14 | #\r |
15 | #**/\r |
16 | \r |
17 | ################################################################################\r |
18 | #\r |
19 | # Defines Section - statements that will be processed to create a Makefile.\r |
20 | #\r |
21 | ################################################################################\r |
22 | [Defines]\r |
23 | INF_VERSION = 0x00010005\r |
24 | BASE_NAME = DebugSupport\r |
25 | FILE_GUID = 911D584C-35F7-4955-BEF9-B452769DDC3A\r |
26 | MODULE_TYPE = DXE_DRIVER\r |
27 | VERSION_STRING = 1.0\r |
28 | EDK_RELEASE_VERSION = 0x00020000\r |
29 | EFI_SPECIFICATION_VERSION = 0x00020000\r |
30 | \r |
31 | ENTRY_POINT = InitializeDebugSupportDriver\r |
32 | \r |
33 | #\r |
34 | # The following information is for reference only and not required by the build tools.\r |
35 | #\r |
36 | # VALID_ARCHITECTURES = IA32 X64 IPF\r |
37 | #\r |
38 | \r |
39 | ################################################################################\r |
40 | #\r |
41 | # Sources Section - list of files that are required for the build to succeed.\r |
42 | #\r |
43 | ################################################################################\r |
44 | \r |
45 | [Sources.common]\r |
46 | DebugSupport.c\r |
47 | \r |
48 | [Sources.Ia32]\r |
49 | Ia32/plDebugSupport.c\r |
50 | Ia32/plDebugSupport.h\r |
51 | Ia32/AsmFuncs.S\r |
52 | Ia32/AsmFuncs.asm\r |
53 | \r |
54 | [Sources.X64]\r |
55 | x64/plDebugSupport.c\r |
56 | x64/plDebugSupport.h\r |
57 | x64/AsmFuncs.S\r |
58 | x64/AsmFuncs.asm\r |
59 | \r |
60 | [Sources.IPF]\r |
61 | ipf/plDebugSupport.h\r |
62 | ipf/plDebugSupport.c\r |
63 | ipf/Ds64Macros.i\r |
64 | ipf/common.i\r |
65 | ipf/AsmFuncs.s\r |
66 | \r |
67 | \r |
68 | ################################################################################\r |
69 | #\r |
70 | # Package Dependency Section - list of Package files that are required for\r |
71 | # this module.\r |
72 | #\r |
73 | ################################################################################\r |
74 | \r |
75 | [Packages]\r |
76 | MdePkg/MdePkg.dec\r |
77 | MdeModulePkg/MdeModulePkg.dec\r |
78 | \r |
79 | \r |
80 | ################################################################################\r |
81 | #\r |
82 | # Library Class Section - list of Library Classes that are required for\r |
83 | # this module.\r |
84 | #\r |
85 | ################################################################################\r |
86 | \r |
87 | [LibraryClasses]\r |
88 | UefiBootServicesTableLib\r |
89 | MemoryAllocationLib\r |
90 | BaseMemoryLib\r |
91 | UefiDriverEntryPoint\r |
92 | DebugLib\r |
93 | \r |
94 | [LibraryClasses.IA32]\r |
95 | PcdLib\r |
96 | BaseLib\r |
97 | \r |
98 | [LibraryClasses.X64]\r |
99 | BaseLib\r |
100 | \r |
101 | \r |
102 | ################################################################################\r |
103 | #\r |
104 | # Protocol C Name Section - list of Protocol and Protocol Notify C Names\r |
105 | # that this module uses or produces.\r |
106 | #\r |
107 | ################################################################################\r |
108 | \r |
109 | [Protocols]\r |
110 | gEfiLoadedImageProtocolGuid # PROTOCOL ALWAYS_CONSUMED\r |
111 | gEfiDebugSupportProtocolGuid # PROTOCOL SOMETIMES_PRODUCED\r |
112 | \r |
113 | \r |
114 | ################################################################################\r |
115 | #\r |
116 | # Pcd FEATURE_FLAG - list of PCDs that this module is coded for.\r |
117 | #\r |
118 | ################################################################################\r |
119 | \r |
120 | [PcdsFeatureFlag.IA32]\r |
121 | PcdNtEmulatorEnable|gEfiEdkModulePkgTokenSpaceGuid\r |
122 | \r |
123 | \r |
124 | ################################################################################\r |
125 | #\r |
126 | # Dependency Expression Section - list of Dependency expressions that are required for\r |
127 | # this module.\r |
128 | #\r |
129 | ################################################################################\r |
130 | \r |
131 | [Depex]\r |
132 | TRUE\r |
133 | \r |