blob: aaffb07e26617432143ed27e7ee6d539245557c1 [file] [log] [blame]
ljin6819aa7b2010-01-28 08:19:25 +00001## @file
qhuang877269122009-08-24 15:31:04 +00002# EFI/PI Reference Module Package for All Architectures
3#
xli24bf2f1722010-01-27 04:07:09 +00004# Copyright (c) 2007 - 2010, Intel Corporation
qhuang877269122009-08-24 15:31:04 +00005#
6# All rights reserved. This program and the accompanying materials
7# are licensed and made available under the terms and conditions of the BSD License
8# which accompanies this distribution. The full text of the license may be found at
9# http://opensource.org/licenses/bsd-license.php
10#
11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13#
ljin6819aa7b2010-01-28 08:19:25 +000014##
qhuang877269122009-08-24 15:31:04 +000015
16[Defines]
17 PLATFORM_NAME = MdeModule
18 PLATFORM_GUID = 587CE499-6CBE-43cd-94E2-186218569478
19 PLATFORM_VERSION = 0.90
20 DSC_SPECIFICATION = 0x00010005
21 OUTPUT_DIRECTORY = Build/MdeModule
22 SUPPORTED_ARCHITECTURES = IA32|IPF|X64|EBC|ARM
23 BUILD_TARGETS = DEBUG|RELEASE
24 SKUID_IDENTIFIER = DEFAULT
25
26
27
lgao46bfbb5f2010-02-24 00:21:16 +000028[LibraryClasses]
qhuang877269122009-08-24 15:31:04 +000029 CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
30 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
31 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
32 SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
33 CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
34 BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
35 PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf
36 PciExpressLib|MdePkg/Library/BasePciExpressLib/BasePciExpressLib.inf
37 PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
38 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
39 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
40 PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
41 PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
42 PostCodeLib|MdePkg/Library/BasePostCodeLibDebug/BasePostCodeLibDebug.inf
43 PostCodeLib|MdePkg/Library/BasePostCodeLibPort80/BasePostCodeLibPort80.inf
44 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
45 TimerLib|MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf
46 UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf
47
48 PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
49 PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
50 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
51 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
52 UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
53 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
54 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
55 PalLib|MdePkg/Library/BasePalLibNull/BasePalLibNull.inf
56 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
57 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
58 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
59 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
60 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
61 UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
62 UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
63 UefiUsbLib|MdePkg/Library/UefiUsbLib/UefiUsbLib.inf
64 NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf
65 IpIoLib|MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf
66 UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf
67 DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf
68 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
69 CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
70 DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
71 DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
72 HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
73 ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf
74 UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
lgao4cd98f302009-11-26 01:31:48 +000075 SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
xli2423b0b372009-12-25 08:09:48 +000076 SerialPortLib|MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.inf
xli24fd53b672009-12-29 07:50:42 +000077 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
qhuang877269122009-08-24 15:31:04 +000078
79[LibraryClasses.IA32]
80 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
81
82[LibraryClasses.X64]
83 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
84
85[LibraryClasses.IPF]
86 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
87
88[LibraryClasses.ARM]
89 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
90
qhuang877269122009-08-24 15:31:04 +000091[LibraryClasses.EBC.PEIM]
92 IoLib|MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf
93
94[LibraryClasses.common.PEI_CORE]
95 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
96 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
97
98[LibraryClasses.common.PEIM]
99 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
100 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
101 ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf
102
103[LibraryClasses.common.DXE_CORE]
104 HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
105 MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
106 ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
107
108[LibraryClasses.common.DXE_DRIVER]
109 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
110 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
111
112[LibraryClasses.common.DXE_RUNTIME_DRIVER]
113 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
114 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
115 SmbusLib|MdePkg/Library/DxeSmbusLib/DxeSmbusLib.inf
116 DebugLib|MdePkg/Library/UefiDebugLibConOut/UefiDebugLibConOut.inf
117
118[LibraryClasses.common.DXE_SAL_DRIVER]
119 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
120 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
121 SmbusLib|MdePkg/Library/DxeSmbusLib/DxeSmbusLib.inf
122 DebugLib|MdePkg/Library/UefiDebugLibConOut/UefiDebugLibConOut.inf
123
124[LibraryClasses.common.DXE_SMM_DRIVER]
125 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
mdkinneyc0b516d2010-02-14 06:20:41 +0000126 MemoryAllocationLib|MdePkg/Library/SmmMemoryAllocationLib/SmmMemoryAllocationLib.inf
qhuang877269122009-08-24 15:31:04 +0000127 SmbusLib|MdePkg/Library/DxeSmbusLib/DxeSmbusLib.inf
128 DebugLib|MdePkg/Library/UefiDebugLibConOut/UefiDebugLibConOut.inf
davidhuang202c3272009-12-23 06:51:36 +0000129 SmmServicesTableLib|MdePkg/Library/SmmServicesTableLib/SmmServicesTableLib.inf
qhuang877269122009-08-24 15:31:04 +0000130
131[LibraryClasses.common.UEFI_DRIVER]
132 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
133 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
134 DebugLib|MdePkg/Library/UefiDebugLibConOut/UefiDebugLibConOut.inf
135
136[LibraryClasses.common.UEFI_APPLICATION]
137 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
138 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
139 DebugLib|MdePkg/Library/UefiDebugLibStdErr/UefiDebugLibStdErr.inf
140
lgao46bfbb5f2010-02-24 00:21:16 +0000141[PcdsFeatureFlag]
qhuang877269122009-08-24 15:31:04 +0000142 gEfiMdePkgTokenSpaceGuid.PcdComponentNameDisable|FALSE
143 gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnosticsDisable|FALSE
144 gEfiMdePkgTokenSpaceGuid.PcdComponentName2Disable|TRUE
145 gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnostics2Disable|TRUE
146 gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText|FALSE
147 gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText|FALSE
148 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableCollectStatistics|FALSE
149 gEfiMdeModulePkgTokenSpaceGuid.PcdUnicodeCollationSupport|TRUE
150 gEfiMdeModulePkgTokenSpaceGuid.PcdUnicodeCollation2Support|TRUE
151 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport|TRUE
152 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|TRUE
153
154[PcdsFeatureFlag.IA32]
155 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|TRUE
156
lgao46bfbb5f2010-02-24 00:21:16 +0000157[PcdsFixedAtBuild]
qhuang877269122009-08-24 15:31:04 +0000158 gEfiMdePkgTokenSpaceGuid.PcdMaximumUnicodeStringLength|1000000
159 gEfiMdePkgTokenSpaceGuid.PcdMaximumAsciiStringLength|1000000
160 gEfiMdePkgTokenSpaceGuid.PcdMaximumLinkedListLength|1000000
161 gEfiMdePkgTokenSpaceGuid.PcdSpinLockTimeout|10000000
162 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x0f
163 gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000000
164 gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x06
165 gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue|0xAF
166 gEfiMdePkgTokenSpaceGuid.PcdPerformanceLibraryPropertyMask|0
167 gEfiMdePkgTokenSpaceGuid.PcdPostCodePropertyMask|0
168 gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress|0xE0000000
169 gEfiMdePkgTokenSpaceGuid.PcdFSBClock|200000000
170 gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|320
171 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizeNonPopulateCapsule|0x0
172 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizePopulateCapsule|0x0
173 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0x0
174 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize|0x0
175 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0x0
176 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize|0x0
177 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase|0x0
178 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize|0x0
179 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxPeiPerformanceLogEntries|28
180 gEfiMdeModulePkgTokenSpaceGuid.PcdVpdBaseAddress|0x0
181 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxPeiPcdCallBackNumberPerPcdEntry|0x08
qhuang877269122009-08-24 15:31:04 +0000182
183 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate|115200
184 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits|8
185 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity|1
186 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits|1
187 gEfiMdePkgTokenSpaceGuid.PcdDefaultTerminalType|0
188 gEfiMdePkgTokenSpaceGuid.PcdMaximumGuidedExtractHandler|0x10
189
190 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxFvSupported|6
191 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeimPerFv|32
192 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeiStackSize|0x20000
193
194
195[PcdsFixedAtBuild.IPF]
196 gEfiMdePkgTokenSpaceGuid.PcdIoBlockBaseAddressForIpf|0x0ffffc000000
197
198###################################################################################################
199#
200# Components Section - list of the modules and components that will be processed by compilation
201# tools and the EDK II tools to generate PE32/PE32+/Coff image files.
202#
203# Note: The EDK II DSC file is not used to specify how compiled binary images get placed
204# into firmware volume images. This section is just a list of modules to compile from
205# source into UEFI-compliant binaries.
206# It is the FDF file that contains information on combining binary files into firmware
207# volume images, whose concept is beyond UEFI and is described in PI specification.
208# Binary modules do not need to be listed in this section, as they should be
209# specified in the FDF file. For example: Shell binary (Shell_Full.efi), FAT binary (Fat.efi),
210# Logo (Logo.bmp), and etc.
211# There may also be modules listed in this section that are not required in the FDF file,
212# When a module listed here is excluded from FDF file, then UEFI-compliant binary will be
213# generated for it, but the binary will not be put into any firmware volume.
214#
215###################################################################################################
216
lgao46bfbb5f2010-02-24 00:21:16 +0000217[Components]
qhuang877269122009-08-24 15:31:04 +0000218 MdeModulePkg/Application/HelloWorld/HelloWorld.inf
219
davidhuang9060e3e2009-10-20 03:43:40 +0000220 MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
221 MdeModulePkg/Bus/Pci/IncompatiblePciDeviceSupportDxe/IncompatiblePciDeviceSupportDxe.inf
qhuang877269122009-08-24 15:31:04 +0000222 MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf
223 MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf
qhuang8ad86a502009-12-22 07:35:49 +0000224 MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf
qhuang877269122009-08-24 15:31:04 +0000225 MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
226 MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
227 MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf
228 MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf
229 MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
230 MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/UsbMouseAbsolutePointerDxe.inf
231 MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouseDxe.inf
232
233 MdeModulePkg/Core/Dxe/DxeMain.inf {
234 <LibraryClasses>
235 NULL|MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/DxeCrc32GuidedSectionExtractLib.inf
236 }
237 MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
238 MdeModulePkg/Core/Pei/PeiMain.inf
239 MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
240
241 MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
242 MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
243 MdeModulePkg/Library/DxeCorePerformanceLib/DxeCorePerformanceLib.inf
244 MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/DxeCrc32GuidedSectionExtractLib.inf
245 MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf
246 MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf
247 MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf
248 MdeModulePkg/Library/DxePerformanceLib/DxePerformanceLib.inf
249 MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf
250 MdeModulePkg/Library/DxePrintLibPrint2Protocol/DxePrintLibPrint2Protocol.inf
251 MdeModulePkg/Library/PeiPerformanceLib/PeiPerformanceLib.inf
252 MdeModulePkg/Library/PeiRecoveryLibNull/PeiRecoveryLibNull.inf
253 MdeModulePkg/Library/PeiS3LibNull/PeiS3LibNull.inf
254 MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
255 MdeModulePkg/Library/BaseResetSystemLibNull/BaseResetSystemLibNull.inf
lgao4cd98f302009-11-26 01:31:48 +0000256 MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
xli24fd53b672009-12-29 07:50:42 +0000257 MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
258 MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
259 MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
xli2430c8ee52009-12-29 08:50:51 +0000260 MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/RuntimeDxeReportStatusCodeLib.inf
qhuang877269122009-08-24 15:31:04 +0000261
262 MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
263 MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
264 MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
265 MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
266 MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
267 MdeModulePkg/Universal/DebugPortDxe/DebugPortDxe.inf
268 MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
269 MdeModulePkg/Universal/PrintDxe/PrintDxe.inf
270 MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
271 MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
272 MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
273 MdeModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf
274 MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
275 MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
276 MdeModulePkg/Universal/Metronome/Metronome.inf
277 MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
davidhuang310b04e2009-11-20 04:01:32 +0000278 MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
qhuang877269122009-08-24 15:31:04 +0000279
280 MdeModulePkg/Universal/Network/ArpDxe/ArpDxe.inf
281 MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf
282 MdeModulePkg/Universal/Network/DpcDxe/DpcDxe.inf
283 MdeModulePkg/Universal/Network/Ip4ConfigDxe/Ip4ConfigDxe.inf
284 MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Dxe.inf
285 MdeModulePkg/Universal/Network/IScsiDxe/IScsiDxe.inf
286 MdeModulePkg/Universal/Network/MnpDxe/MnpDxe.inf
xdu2779ae352009-12-30 13:47:55 +0000287 MdeModulePkg/Universal/Network/VlanConfigDxe/VlanConfigDxe.inf
qhuang877269122009-08-24 15:31:04 +0000288 MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
289 MdeModulePkg/Universal/Network/SnpDxe/SnpDxe.inf
290 MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Dxe.inf
291 MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Dxe.inf
qhuang877269122009-08-24 15:31:04 +0000292
293 MdeModulePkg/Universal/PcatSingleSegmentPciCfg2Pei/PcatSingleSegmentPciCfg2Pei.inf
294 MdeModulePkg/Universal/PCD/Dxe/Pcd.inf
295 MdeModulePkg/Universal/PCD/Pei/Pcd.inf
296 MdeModulePkg/Universal/PlatformDriOverrideDxe/PlatformDriOverrideDxe.inf
xli2425126a02009-11-03 02:39:10 +0000297
298 MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf
299 MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf
davidhuang202c3272009-12-23 06:51:36 +0000300 MdeModulePkg/Universal/ReportStatusCodeRouter/Smm/ReportStatusCodeRouterSmm.inf
xli2425126a02009-11-03 02:39:10 +0000301
qhuang877269122009-08-24 15:31:04 +0000302 MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
303 MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
304 MdeModulePkg/Application/VariableInfo/VariableInfo.inf
305 MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
306 MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
307 MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
308
309 MdeModulePkg/Universal/Acpi/AcpiPlatformDxe/AcpiPlatformDxe.inf
310 MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
lgao4ae76fe72009-11-11 06:17:18 +0000311 MdeModulePkg/Universal/HiiResourcesSampleDxe/HiiResourcesSampleDxe.inf
xli2427198032009-11-25 08:31:37 +0000312 MdeModulePkg/Universal/LegacyRegion2Dxe/LegacyRegion2Dxe.inf
qhuang877269122009-08-24 15:31:04 +0000313
xli2410c56482009-12-25 07:26:06 +0000314 MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf
315 MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf
316
ljin6819aa7b2010-01-28 08:19:25 +0000317
qhuang877269122009-08-24 15:31:04 +0000318[Components.IA32, Components.X64]
ljin6819aa7b2010-01-28 08:19:25 +0000319 MdeModulePkg/Universal/Network/UefiPxeBcDxe/UefiPxeBcDxe.inf
xli24b25c0b62009-12-29 09:15:55 +0000320 MdeModulePkg/Library/SmmReportStatusCodeLib/SmmReportStatusCodeLib.inf
qhuang877269122009-08-24 15:31:04 +0000321 MdeModulePkg/Universal/DebugSupportDxe/DebugSupportDxe.inf
322 MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
323 MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf
324 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
xli2410c56482009-12-25 07:26:06 +0000325 MdeModulePkg/Universal/StatusCodeHandler/Smm/StatusCodeHandlerSmm.inf
qhuang877269122009-08-24 15:31:04 +0000326
327
328[Components.IPF]
ljin6819aa7b2010-01-28 08:19:25 +0000329 MdeModulePkg/Universal/Network/UefiPxeBcDxe/UefiPxeBcDxe.inf
qhuang877269122009-08-24 15:31:04 +0000330 MdeModulePkg/Universal/DebugSupportDxe/DebugSupportDxe.inf
331 MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
332
333
334[Components.EBC]
335 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
336 MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf