Nt32Pkg.dsc revision 7cc9c452858d4ac63d587eed7f96391469be91cb
1## @file
2# EFI/Framework 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 - 2010, Intel Corporation
8#
9#  All rights reserved. This program and the accompanying materials
10#    are licensed and made available under the terms and conditions of the BSD License
11#    which accompanies this distribution. The full text of the license may be found at
12#    http://opensource.org/licenses/bsd-license.php
13#
14#    THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15#    WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16#
17##
18
19################################################################################
20#
21# Defines Section - statements that will be processed to create a Makefile.
22#
23################################################################################
24[Defines]
25  PLATFORM_NAME                  = NT32
26  PLATFORM_GUID                  = EB216561-961F-47EE-9EF9-CA426EF547C2
27  PLATFORM_VERSION               = 0.3
28  DSC_SPECIFICATION              = 0x00010005
29  OUTPUT_DIRECTORY               = Build/NT32
30  SUPPORTED_ARCHITECTURES        = IA32
31  BUILD_TARGETS                  = DEBUG|RELEASE
32  SKUID_IDENTIFIER               = DEFAULT
33  FLASH_DEFINITION               = Nt32Pkg/Nt32Pkg.fdf
34
35
36################################################################################
37#
38# SKU Identification section - list of all SKU IDs supported by this
39#                              Platform.
40#
41################################################################################
42[SkuIds]
43  0|DEFAULT              # The entry: 0|DEFAULT is reserved and always required.
44
45################################################################################
46#
47# Library Class section - list of all Library Classes needed by this Platform.
48#
49################################################################################
50[LibraryClasses]
51  #
52  # Entry point
53  #
54  PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
55  PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
56  DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
57  UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
58  UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
59  #
60  # Basic
61  #
62  BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
63  SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
64  PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
65  CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
66  IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
67  PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
68  PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf
69  PciExpressLib|MdePkg/Library/BasePciExpressLib/BasePciExpressLib.inf
70  CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
71  PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
72  PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
73  #
74  # UEFI & PI
75  #
76  UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
77  UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
78  UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
79  UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
80  UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
81  HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
82  DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
83  UefiDecompressLib|IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.inf
84  PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
85  PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
86  DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
87  DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
88  
89  #
90  # Generic Modules
91  #
92  UefiUsbLib|MdePkg/Library/UefiUsbLib/UefiUsbLib.inf
93  UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
94  NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf
95  IpIoLib|MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf
96  UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf
97  DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf
98  OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
99  GenericBdsLib|IntelFrameworkModulePkg/Library/GenericBdsLib/GenericBdsLib.inf
100  SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
101  TimerLib|MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf
102  SerialPortLib|MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.inf
103  CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
104  #
105  # Platform
106  #
107  PlatformBdsLib|Nt32Pkg/Library/Nt32BdsLib/Nt32BdsLib.inf
108  #
109  # Misc
110  #
111  DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
112  PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
113  DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
114
115[LibraryClasses.common.USER_DEFINED]
116  DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
117  PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
118  ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
119  OemHookStatusCodeLib|Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/PeiNt32OemHookStatusCodeLib.inf
120  MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
121  PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
122
123[LibraryClasses.common.PEIM,LibraryClasses.common.PEI_CORE]
124  #
125  # PEI phase common
126  #
127  HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
128  MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
129  ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
130  ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf
131  BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptPei/BaseMemoryLibOptPei.inf
132  IoLib|MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf
133  PeCoffGetEntryPointLib|Nt32Pkg/Library/Nt32PeiPeCoffGetEntryPointLib/Nt32PeiPeCoffGetEntryPointLib.inf
134  PeCoffExtraActionLib|Nt32Pkg/Library/PeiNt32PeCoffExtraActionLib/PeiNt32PeCoffExtraActionLib.inf
135
136[LibraryClasses.common.PEI_CORE]
137  PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
138  OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
139
140[LibraryClasses.common.PEIM]
141  PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
142  OemHookStatusCodeLib|Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/PeiNt32OemHookStatusCodeLib.inf
143
144[LibraryClasses.common]
145  #
146  # DXE phase common
147  #
148  BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.inf
149  HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
150  PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
151  MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
152  ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
153  OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
154  PeCoffExtraActionLib|Nt32Pkg/Library/DxeNt32PeCoffExtraActionLib/DxeNt32PeCoffExtraActionLib.inf
155  ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
156  WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
157
158[LibraryClasses.common.DXE_CORE]
159  HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
160  MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
161  PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
162
163[LibraryClasses.common.DXE_SMM_DRIVER]
164  DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
165
166[LibraryClasses.common.UEFI_DRIVER]
167  PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
168
169[LibraryClasses.common.UEFI_APPLICATION]
170  PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
171  PrintLib|MdeModulePkg/Library/DxePrintLibPrint2Protocol/DxePrintLibPrint2Protocol.inf
172
173################################################################################
174#
175# Pcd Section - list of all EDK II PCD Entries defined by this Platform
176#
177################################################################################
178[PcdsFeatureFlag]
179  gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE
180  gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE
181  gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreImageLoaderSearchTeSectionFirst|FALSE
182  gEfiMdeModulePkgTokenSpaceGuid.PcdVariableCollectStatistics|TRUE
183
184[PcdsFixedAtBuild]
185  gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizeNonPopulateCapsule|0x0
186  gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizePopulateCapsule|0x0
187  gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000040
188  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareFdSize|0x2a0000
189  gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x1f
190  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareVolume|L"..\\Fv\\Nt32.fd"
191  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareBlockSize|0x10000
192  gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x0f
193
194################################################################################
195#
196# Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
197#
198################################################################################
199[PcdsDynamicDefault.common.DEFAULT]
200  gEfiNt32PkgTokenSpaceGuid.PcdWinNtSerialPort|L"COM1!COM2"|VOID*|18
201  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFileSystem|L".!..\..\..\..\EdkShellBinPkg\Bin\Ia32\Apps"|VOID*|106
202  gEfiNt32PkgTokenSpaceGuid.PcdWinNtGop|L"UGA Window 1!UGA Window 2"|VOID*|50
203  gEfiNt32PkgTokenSpaceGuid.PcdWinNtConsole|L"Bus Driver Console Window"|VOID*|50
204  gEfiNt32PkgTokenSpaceGuid.PcdWinNtVirtualDisk|L"FW;40960;512"|VOID*|24
205  gEfiNt32PkgTokenSpaceGuid.PcdWinNtMemorySize|L"64!64"|VOID*|10
206  gEfiNt32PkgTokenSpaceGuid.PcdWinNtPhysicalDisk|L"a:RW;2880;512!d:RO;307200;2048!j:RW;262144;512"|VOID*|100
207  gEfiNt32PkgTokenSpaceGuid.PcdWinNtUga|L"UGA Window 1!UGA Window 2"|VOID*|50
208
209  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0
210  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0
211  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase|0
212
213[PcdsDynamicHii.common.DEFAULT]
214  gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn|L"Setup"|gEfiWinNtSystemConfigGuid|0x0|80
215  gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow|L"Setup"|gEfiWinNtSystemConfigGuid|0x4|25
216  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPlatformBootTimeOut|L"Timeout"|gEfiGlobalVariableGuid|0x0|10
217  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdHardwareErrorRecordLevel|L"HwErrRecSupport"|gEfiGlobalVariableGuid|0x0|1
218
219###################################################################################################
220#
221# Components Section - list of the modules and components that will be processed by compilation
222#                      tools and the EDK II tools to generate PE32/PE32+/Coff image files.
223#
224# Note: The EDK II DSC file is not used to specify how compiled binary images get placed
225#       into firmware volume images. This section is just a list of modules to compile from
226#       source into UEFI-compliant binaries.
227#       It is the FDF file that contains information on combining binary files into firmware
228#       volume images, whose concept is beyond UEFI and is described in PI specification.
229#       Binary modules do not need to be listed in this section, as they should be
230#       specified in the FDF file. For example: Shell binary (Shell_Full.efi), FAT binary (Fat.efi),
231#       Logo (Logo.bmp), and etc.
232#       There may also be modules listed in this section that are not required in the FDF file,
233#       When a module listed here is excluded from FDF file, then UEFI-compliant binary will be
234#       generated for it, but the binary will not be put into any firmware volume.
235#
236###################################################################################################
237[Components.IA32]
238  ##
239  #  SEC Phase modules
240  ##
241  Nt32Pkg/Sec/SecMain.inf
242
243  ##
244  #  PEI Phase modules
245  ##
246  MdeModulePkg/Core/Pei/PeiMain.inf
247  MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
248    <LibraryClasses>
249      PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
250  }
251  MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf
252  MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf
253  Nt32Pkg/WinNtOemHookStatusCodeHandlerPei/WinNtOemHookStatusCodeHandlerPei.inf
254  Nt32Pkg/BootModePei/BootModePei.inf
255  Nt32Pkg/StallPei/StallPei.inf
256  Nt32Pkg/WinNtFlashMapPei/WinNtFlashMapPei.inf
257  MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
258  Nt32Pkg/WinNtAutoScanPei/WinNtAutoScanPei.inf
259  Nt32Pkg/WinNtFirmwareVolumePei/WinNtFirmwareVolumePei.inf
260  Nt32Pkg/WinNtThunkPPIToProtocolPei/WinNtThunkPPIToProtocolPei.inf
261  MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
262  ##
263  #  DXE Phase modules
264  ##
265  MdeModulePkg/Core/Dxe/DxeMain.inf {
266    <LibraryClasses>
267      NULL|MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/DxeCrc32GuidedSectionExtractLib.inf
268    <BuildOptions>
269      *_*_IA32_CC_FLAGS =
270  }
271
272  MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
273    <LibraryClasses>
274      PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
275  }
276  Nt32Pkg/MetronomeDxe/MetronomeDxe.inf
277  Nt32Pkg/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf
278  Nt32Pkg/ResetRuntimeDxe/ResetRuntimeDxe.inf
279  MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
280  Nt32Pkg/FvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf
281  MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
282  IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf
283  MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
284  MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
285  MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
286  Nt32Pkg/WinNtThunkDxe/WinNtThunkDxe.inf
287  Nt32Pkg/CpuRuntimeDxe/CpuRuntimeDxe.inf
288  MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
289  IntelFrameworkModulePkg/Universal/DataHubStdErrDxe/DataHubStdErrDxe.inf
290  Nt32Pkg/MiscSubClassPlatformDxe/MiscSubClassPlatformDxe.inf
291  Nt32Pkg/TimerDxe/TimerDxe.inf
292  MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf
293  MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf
294  Nt32Pkg/WinNtOemHookStatusCodeHandlerDxe/WinNtOemHookStatusCodeHandlerDxe.inf
295  MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
296  MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
297  MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
298  MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
299  MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
300  MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf {
301    <LibraryClasses>
302      PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
303  }
304  MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
305  MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
306  MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
307  MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
308  MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
309  MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
310  MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
311  MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf     ##This driver follows UEFI specification definition
312  MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf    ##This driver follows UEFI specification definition
313  IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/IdeBusDxe.inf
314  Nt32Pkg/WinNtBusDriverDxe/WinNtBusDriverDxe.inf {
315    <LibraryClasses>
316      PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
317  }
318  Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIoDxe.inf
319  Nt32Pkg/WinNtSerialIoDxe/WinNtSerialIoDxe.inf
320  Nt32Pkg/WinNtGopDxe/WinNtGopDxe.inf
321  Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystemDxe.inf
322  MdeModulePkg/Application/HelloWorld/HelloWorld.inf
323
324  #
325  # Network stack drivers
326  # To test network drivers, need network Io driver(SnpNt32Io.dll), please refer to NETWORK-IO Subproject.
327  #
328  MdeModulePkg/Universal/Network/DpcDxe/DpcDxe.inf
329  MdeModulePkg/Universal/Network/ArpDxe/ArpDxe.inf
330  MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf
331  MdeModulePkg/Universal/Network/Ip4ConfigDxe/Ip4ConfigDxe.inf
332  MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Dxe.inf
333  MdeModulePkg/Universal/Network/MnpDxe/MnpDxe.inf
334  MdeModulePkg/Universal/Network/VlanConfigDxe/VlanConfigDxe.inf
335  MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
336  MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Dxe.inf
337  MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Dxe.inf
338  MdeModulePkg/Universal/Network/UefiPxeBcDxe/UefiPxeBcDxe.inf
339  Nt32Pkg/SnpNt32Dxe/SnpNt32Dxe.inf
340
341  MdeModulePkg/Universal/Network/IScsiDxe/IScsiDxe.inf
342
343  IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf
344  MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
345  MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
346  MdeModulePkg/Universal/PrintDxe/PrintDxe.inf
347  MdeModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf {
348    <LibraryClasses>
349      PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
350  }
351  MdeModulePkg/Application/VariableInfo/VariableInfo.inf
352
353  MdeModulePkg/Universal/PlatformDriOverrideDxe/PlatformDriOverrideDxe.inf
354
355###################################################################################################
356#
357# BuildOptions Section - Define the module specific tool chain flags that should be used as
358#                        the default flags for a module. These flags are appended to any 
359#                        standard flags that are defined by the build process. They can be 
360#                        applied for any modules or only those modules with the specific 
361#                        module style (EDK or EDKII) specified in [Components] section.
362#
363###################################################################################################
364[BuildOptions]
365  DEBUG_*_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=$(IMAGE_ENTRY_POINT) /ALIGN:4096 /FILEALIGN:4096 /SUBSYSTEM:CONSOLE
366  RELEASE_*_IA32_DLINK_FLAGS = /ALIGN:4096 /FILEALIGN:4096
367  *_*_IA32_CC_FLAGS = /D EFI_SPECIFICATION_VERSION=0x0002000A /D TIANO_RELEASE_VERSION=0x00080006
368
369#############################################################################################################
370# NOTE:
371# The following [Libraries.IA32] section is for building R8 module under the R9 tool chain.
372# If you want build R8 module for Nt32 platform, please uncomment [Libraries.IA32] section and
373# libraries used by that R8 module.
374# Currently, Nt32 platform do not has any R8 style module
375#
376#
377#[Libraries.IA32]
378  #
379  # Libraries common to PEI and DXE
380  #
381  #  EdkCompatibilityPkg/Foundation/Efi/Guid/EfiGuidLib.inf
382  #  EdkCompatibilityPkg/Foundation/Framework/Guid/EdkFrameworkGuidLib.inf
383  #  EdkCompatibilityPkg/Foundation/Guid/EdkGuidLib.inf
384  #  EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/EfiCommonLib.inf
385  #  EdkCompatibilityPkg/Foundation/Cpu/Pentium/CpuIA32Lib/CpuIA32Lib.inf
386  #  EdkCompatibilityPkg/Foundation/Cpu/Itanium/CpuIa64Lib/CpuIA64Lib.inf
387  #  EdkCompatibilityPkg/Foundation/Library/CustomizedDecompress/CustomizedDecompress.inf
388  #  EdkCompatibilityPkg/Foundation/Library/CompilerStub/CompilerStubLib.inf
389  #  EdkCompatibilityPkg/Foundation/Library/Dxe/Hob/HobLib.inf
390
391  #
392  # PEI libraries
393  #
394  #  EdkCompatibilityPkg/Foundation/Framework/Ppi/EdkFrameworkPpiLib.inf
395  #  EdkCompatibilityPkg/Foundation/Ppi/EdkPpiLib.inf
396  #  EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/PeiLib.inf
397  #  EdkCompatibilityPkg/Foundation/Library/Pei/Hob/PeiHobLib.inf
398
399  #
400  # DXE libraries
401  #
402  #  EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/ArchProtocolLib.inf
403  #  EdkCompatibilityPkg/Foundation/Efi/Protocol/EfiProtocolLib.inf
404  #  EdkCompatibilityPkg/Foundation/Framework/Protocol/EdkFrameworkProtocolLib.inf
405  #  EdkCompatibilityPkg/Foundation/Protocol/EdkProtocolLib.inf
406  #  EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/EfiDriverLib.inf
407  #  EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/EfiRuntimeLib.inf
408  #  EdkCompatibilityPkg/Foundation/Library/Dxe/Graphics/Graphics.inf
409  #  EdkCompatibilityPkg/Foundation/Library/Dxe/EfiIfrSupportLib/EfiIfrSupportLib.inf
410  #  EdkCompatibilityPkg/Foundation/Library/Dxe/Print/PrintLib.inf
411  #  EdkCompatibilityPkg/Foundation/Library/Dxe/EfiScriptLib/EfiScriptLib.inf
412  #  EdkCompatibilityPkg/Foundation/Library/Dxe/EfiUiLib/EfiUiLib.inf
413
414  #
415  # Print/Graphics Library consume SetupBrowser Print Protocol
416  #
417  #  EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/PrintLib.inf
418  #  EdkCompatibilityPkg/Foundation/Library/Dxe/GraphicsLite/Graphics.inf
419
420