]> git.proxmox.com Git - mirror_edk2.git/blob - EmulatorPkg/EmulatorPkg.dsc
ae318bd0965aecf070c084cf8d1670bf47000fd5
[mirror_edk2.git] / EmulatorPkg / EmulatorPkg.dsc
1 ## @file
2 # UEFI/PI Emulation Platform with UEFI HII interface supported.
3 #
4 # The Emulation Platform can be used to debug individual modules, prior to creating
5 # a real platform. This also provides an example for how an DSC is created.
6 #
7 # Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
8 # Portions copyright (c) 2010 - 2011, Apple Inc. All rights reserved.<BR>
9 #
10 # This program and the accompanying materials
11 # are licensed and made available under the terms and conditions of the BSD License
12 # which accompanies this distribution. The full text of the license may be found at
13 # http://opensource.org/licenses/bsd-license.php
14 #
15 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
17 #
18 ##
19
20 [Defines]
21 PLATFORM_NAME = EmulatorPkg
22 PLATFORM_GUID = 05FD064D-1073-E844-936C-A0E16317107D
23 PLATFORM_VERSION = 0.3
24 DSC_SPECIFICATION = 0x00010005
25 !if $(BUILD_32)
26 OUTPUT_DIRECTORY = Build/Emulator32
27 !else
28 OUTPUT_DIRECTORY = Build/Emulator
29 !endif
30
31 SUPPORTED_ARCHITECTURES = X64|IA32
32 BUILD_TARGETS = DEBUG|RELEASE
33 SKUID_IDENTIFIER = DEFAULT
34 FLASH_DEFINITION = EmulatorPkg/EmulatorPkg.fdf
35
36 [SkuIds]
37 0|DEFAULT
38
39 [LibraryClasses]
40 #
41 # Entry point
42 #
43 PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
44 PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
45 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
46 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
47 UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
48 #
49 # Basic
50 #
51 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
52 SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
53 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
54 CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
55 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
56 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
57 BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
58
59 #
60 # UEFI & PI
61 #
62 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
63 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
64 UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
65 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
66 UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
67 HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
68 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
69 UefiDecompressLib|IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.inf
70
71 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
72 DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
73 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
74 SmbiosLib|EmulatorPkg/Library/SmbiosLib/SmbiosLib.inf
75
76 #
77 # Generic Modules
78 #
79 UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
80 NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf
81 IpIoLib|MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf
82 UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf
83 DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf
84 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
85 GenericBdsLib|IntelFrameworkModulePkg/Library/GenericBdsLib/GenericBdsLib.inf
86 SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
87 TimerLib|MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf
88 SerialPortLib|MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.inf
89 SerialPortExtLib|EmbeddedPkg/Library/TemplateSerialPortExtLib/TemplateSerialPortExtLib.inf
90 CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
91 #
92 # Platform
93 #
94 PlatformBdsLib|EmulatorPkg/Library/EmuBdsLib/EmuBdsLib.inf
95 KeyMapLib|EmulatorPkg/Library/KeyMapLibNull/KeyMapLibNull.inf
96
97 #
98 # Misc
99 #
100 DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
101 PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
102 DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
103 PeiServicesTablePointerLib|EmulatorPkg/Library/PeiServicesTablePointerLibMagicPage/PeiServicesTablePointerLibMagicPage.inf
104 DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
105 LockBoxLib|MdeModulePkg/Library/LockBoxNullLib/LockBoxNullLib.inf
106 CpuExceptionHandlerLib|MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLibNull.inf
107
108 [LibraryClasses.common.SEC]
109 PeiServicesLib|EmulatorPkg/Library/SecPeiServicesLib/SecPeiServicesLib.inf
110 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
111 PeCoffGetEntryPointLib|EmulatorPkg/Library/PeiEmuPeCoffGetEntryPointLib/PeiEmuPeCoffGetEntryPointLib.inf
112 PeCoffExtraActionLib|EmulatorPkg/Library/PeiEmuPeCoffExtraActionLib/PeiEmuPeCoffExtraActionLib.inf
113 SerialPortLib|EmulatorPkg/Library/PeiEmuSerialPortLib/PeiEmuSerialPortLib.inf
114 PpiListLib|EmulatorPkg/Library/SecPpiListLib/SecPpiListLib.inf
115 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
116 TimerLib|EmulatorPkg/Library/PeiTimerLib/PeiTimerLib.inf
117
118 [LibraryClasses.common.USER_DEFINED, LibraryClasses.common.BASE]
119 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
120 PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
121 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
122 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
123 PpiListLib|EmulatorPkg/Library/SecPpiListLib/SecPpiListLib.inf
124 ThunkPpiList|EmulatorPkg/Library/ThunkPpiList/ThunkPpiList.inf
125 ThunkProtocolList|EmulatorPkg/Library/ThunkProtocolList/ThunkProtocolList.inf
126 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
127 PpiListLib|EmulatorPkg/Library/SecPpiListLib/SecPpiListLib.inf
128 PeiServicesLib|EmulatorPkg/Library/SecPeiServicesLib/SecPeiServicesLib.inf
129
130
131 [LibraryClasses.common.PEIM, LibraryClasses.common.PEI_CORE]
132 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
133 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
134 ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
135 PeCoffGetEntryPointLib|EmulatorPkg/Library/PeiEmuPeCoffGetEntryPointLib/PeiEmuPeCoffGetEntryPointLib.inf
136 PeCoffExtraActionLib|EmulatorPkg/Library/PeiEmuPeCoffExtraActionLib/PeiEmuPeCoffExtraActionLib.inf
137 ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf
138 SerialPortLib|EmulatorPkg/Library/PeiEmuSerialPortLib/PeiEmuSerialPortLib.inf
139 ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
140 TimerLib|EmulatorPkg/Library/PeiTimerLib/PeiTimerLib.inf
141
142 [LibraryClasses.common.PEI_CORE]
143 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
144
145 [LibraryClasses.common.PEIM]
146 PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
147
148 [LibraryClasses.common.DXE_CORE]
149 HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
150 MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
151 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
152 PeCoffExtraActionLib|EmulatorPkg/Library/DxeEmuPeCoffExtraActionLib/DxeEmuPeCoffExtraActionLib.inf
153 ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
154 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
155 TimerLib|EmulatorPkg/Library/DxeCoreTimerLib/DxeCoreTimerLib.inf
156 EmuThunkLib|EmulatorPkg/Library/DxeEmuLib/DxeEmuLib.inf
157
158 [LibraryClasses.common.DXE_RUNTIME_DRIVER, LibraryClasses.common.UEFI_DRIVER, LibraryClasses.common.DXE_DRIVER, LibraryClasses.common.UEFI_APPLICATION]
159 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
160 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
161 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
162 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
163 EmuThunkLib|EmulatorPkg/Library/DxeEmuLib/DxeEmuLib.inf
164 PeCoffExtraActionLib|EmulatorPkg/Library/DxeEmuPeCoffExtraActionLib/DxeEmuPeCoffExtraActionLib.inf
165 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
166 TimerLib|EmulatorPkg/Library/DxeTimerLib/DxeTimerLib.inf
167
168 [LibraryClasses.common.UEFI_DRIVER]
169 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
170
171 [LibraryClasses.common.UEFI_APPLICATION]
172 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
173
174
175 [PcdsFeatureFlag]
176 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE
177 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|TRUE
178 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreImageLoaderSearchTeSectionFirst|FALSE
179 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplBuildPageTables|FALSE
180
181 [PcdsFixedAtBuild]
182 gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE
183 gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000040
184 gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x0f
185 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x1f
186 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizeNonPopulateCapsule|0x0
187 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizePopulateCapsule|0x0
188
189 gEmulatorPkgTokenSpaceGuid.PcdEmuFirmwareFdSize|0x002a0000
190 gEmulatorPkgTokenSpaceGuid.PcdEmuFirmwareBlockSize|0x10000
191 gEmulatorPkgTokenSpaceGuid.PcdEmuFirmwareVolume|L"../FV/FV_RECOVERY.fd"
192
193 gEmulatorPkgTokenSpaceGuid.PcdEmuMemorySize|L"64!64"
194
195 !if $(BUILD_NEW_SHELL)
196 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdShellFile|{ 0x83, 0xA5, 0x04, 0x7C, 0x3E, 0x9E, 0x1C, 0x4F, 0xAD, 0x65, 0xE0, 0x52, 0x68, 0xD0, 0xB4, 0xD1 }
197 !else
198 !if $(USE_NEW_SHELL)
199 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdShellFile|{ 0x83, 0xA5, 0x04, 0x7C, 0x3E, 0x9E, 0x1C, 0x4F, 0xAD, 0x65, 0xE0, 0x52, 0x68, 0xD0, 0xB4, 0xD1 }
200 !endif
201 !endif
202
203 #define BOOT_WITH_FULL_CONFIGURATION 0x00
204 #define BOOT_WITH_MINIMAL_CONFIGURATION 0x01
205 #define BOOT_ASSUMING_NO_CONFIGURATION_CHANGES 0x02
206 #define BOOT_WITH_FULL_CONFIGURATION_PLUS_DIAGNOSTICS 0x03
207 #define BOOT_WITH_DEFAULT_SETTINGS 0x04
208 #define BOOT_ON_S4_RESUME 0x05
209 #define BOOT_ON_S5_RESUME 0x06
210 #define BOOT_ON_S2_RESUME 0x10
211 #define BOOT_ON_S3_RESUME 0x11
212 #define BOOT_ON_FLASH_UPDATE 0x12
213 #define BOOT_IN_RECOVERY_MODE 0x20
214 gEmulatorPkgTokenSpaceGuid.PcdEmuBootMode|0
215
216 gEmulatorPkgTokenSpaceGuid.PcdEmuApCount|L"1"
217
218 # For a CD-ROM/DVD use L"diag.dmg:RO:2048"
219 gEmulatorPkgTokenSpaceGuid.PcdEmuVirtualDisk|L"disk.dmg:FW"
220 gEmulatorPkgTokenSpaceGuid.PcdEmuGop|L"GOP Window"
221 gEmulatorPkgTokenSpaceGuid.PcdEmuFileSystem|L".!../../../../EdkShellBinPkg/Bin"
222 gEmulatorPkgTokenSpaceGuid.PcdEmuSerialPort|L"/dev/ttyS0"
223 gEmulatorPkgTokenSpaceGuid.PcdEmuNetworkInterface|L"en0"
224
225 gEmulatorPkgTokenSpaceGuid.PcdEmuCpuModel|L"Intel(R) Processor Model"
226 gEmulatorPkgTokenSpaceGuid.PcdEmuCpuSpeed|L"3000"
227
228 # 0-PCANSI, 1-VT100, 2-VT00+, 3-UTF8
229 gEfiMdePkgTokenSpaceGuid.PcdDefaultTerminalType|1
230
231 [PcdsDynamicDefault.common.DEFAULT]
232 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64|0
233 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64|0
234 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64|0
235
236 [PcdsDynamicHii.common.DEFAULT]
237 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn|L"Setup"|gEmuSystemConfigGuid|0x0|80
238 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow|L"Setup"|gEmuSystemConfigGuid|0x4|25
239
240
241 [Components]
242 !ifdef $(UNIX_SEC_BUILD)
243 ##
244 # Emulator, OS POSIX application
245 ##
246 EmulatorPkg/Unix/Host/Host.inf
247 !endif
248
249 !ifndef $(SKIP_MAIN_BUILD)
250 #
251 # Generic SEC
252 #
253 EmulatorPkg/Sec/Sec.inf
254
255 ##
256 # PEI Phase modules
257 ##
258 MdeModulePkg/Core/Pei/PeiMain.inf
259 MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
260 <LibraryClasses>
261 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
262 }
263 MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf
264 MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf
265
266 IntelFrameworkModulePkg/Universal/StatusCode/Pei/StatusCodePei.inf
267 EmulatorPkg/BootModePei/BootModePei.inf
268 MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
269 EmulatorPkg/AutoScanPei/AutoScanPei.inf
270 EmulatorPkg/FirmwareVolumePei/FirmwareVolumePei.inf
271 EmulatorPkg/FlashMapPei/FlashMapPei.inf
272 EmulatorPkg/ThunkPpiToProtocolPei/ThunkPpiToProtocolPei.inf
273 MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
274
275 ##
276 # DXE Phase modules
277 ##
278 MdeModulePkg/Core/Dxe/DxeMain.inf {
279 <LibraryClasses>
280 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
281 SerialPortLib|EmulatorPkg/Library/DxeEmuStdErrSerialPortLib/DxeEmuStdErrSerialPortLib.inf
282 DxeEmuLib|EmulatorPkg/Library/DxeEmuLib/DxeEmuLib.inf
283 NULL|MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/DxeCrc32GuidedSectionExtractLib.inf
284 NULL|IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
285 }
286 MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
287 <LibraryClasses>
288 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
289 }
290
291 MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf
292 MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf {
293 <LibraryClasses>
294 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
295 SerialPortLib|EmulatorPkg/Library/DxeEmuStdErrSerialPortLib/DxeEmuStdErrSerialPortLib.inf
296 }
297
298 MdeModulePkg/Universal/Metronome/Metronome.inf
299 EmulatorPkg/RealTimeClockRuntimeDxe/RealTimeClock.inf
300 EmulatorPkg/ResetRuntimeDxe/Reset.inf
301 MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
302 EmulatorPkg/FvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf
303 MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
304 MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
305 MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
306 EmulatorPkg/EmuThunkDxe/EmuThunk.inf
307 EmulatorPkg/CpuRuntimeDxe/Cpu.inf
308 MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
309 EmulatorPkg/PlatformSmbiosDxe/PlatformSmbiosDxe.inf
310 EmulatorPkg/TimerDxe/Timer.inf
311
312
313 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
314 MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
315 MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
316 MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
317 MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
318 MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
319 MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
320 EmbeddedPkg/SerialDxe/SerialDxe.inf {
321 <LibraryClasses>
322 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
323 SerialPortLib|EmulatorPkg/Library/DxeEmuSerialPortLib/DxeEmuSerialPortLib.inf
324 }
325
326 MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
327 IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf
328 MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
329 #{
330 # <LibraryClasses>
331 # NULL|EmulatorPkg/Library/DevicePathTextLib/DevicePathTextLib.inf
332 #}
333
334 MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
335 MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
336 MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
337 MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
338 MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
339 MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
340 IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/IdeBusDxe.inf
341
342 EmulatorPkg/EmuBusDriverDxe/EmuBusDriverDxe.inf
343 EmulatorPkg/EmuGopDxe/EmuGopDxe.inf
344 EmulatorPkg/EmuSimpleFileSystemDxe/EmuSimpleFileSystemDxe.inf
345 EmulatorPkg/EmuBlockIoDxe/EmuBlockIoDxe.inf
346 EmulatorPkg/EmuSnpDxe/EmuSnpDxe.inf
347
348 MdeModulePkg/Application/HelloWorld/HelloWorld.inf
349
350 #
351 # Network stack drivers
352 #
353 MdeModulePkg/Universal/Network/DpcDxe/DpcDxe.inf
354 MdeModulePkg/Universal/Network/ArpDxe/ArpDxe.inf
355 MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf
356 MdeModulePkg/Universal/Network/Ip4ConfigDxe/Ip4ConfigDxe.inf
357 MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Dxe.inf
358 MdeModulePkg/Universal/Network/MnpDxe/MnpDxe.inf
359 MdeModulePkg/Universal/Network/VlanConfigDxe/VlanConfigDxe.inf
360 MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
361 MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Dxe.inf
362 MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Dxe.inf
363
364 MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
365 MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
366 MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
367 MdeModulePkg/Universal/PrintDxe/PrintDxe.inf
368 MdeModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf {
369 <LibraryClasses>
370 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
371 }
372
373 !if $(BUILD_FAT)
374 FatPkg/EnhancedFatDxe/Fat.inf
375 !endif
376
377 !if $(BUILD_NEW_SHELL)
378 ShellPkg/Application/Shell/Shell.inf {
379 <LibraryClasses>
380 ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
381 NULL|ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf
382 NULL|ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf
383 NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
384 NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
385 NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
386 NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
387 NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
388 HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
389 FileHandleLib|ShellPkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
390 ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf
391 SortLib|ShellPkg/Library/UefiSortLib/UefiSortLib.inf
392 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
393 PathLib|ShellPkg/Library/BasePathLib/BasePathLib.inf
394 # MemoryAllocationLib|EmulatorPkg/Library/GuardUefiMemoryAllocationLib/GuardUefiMemoryAllocationLib.inf
395 # SafeBlockIoLib|ShellPkg/Library/SafeBlockIoLib/SafeBlockIoLib.inf
396 # SafeOpenProtocolLib|ShellPkg/Library/SafeOpenProtocolLib/SafeOpenProtocolLib.inf
397
398 <PcdsFixedAtBuild>
399 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xFF
400 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
401 gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|8000
402 }
403 !endif
404
405 !endif
406