Nt32Pkg.dsc revision 572b0adfe242dd358f0431063143fcc818356b26
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 - 2011, Intel Corporation. All rights reserved.<BR>
8#
9#    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.4
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  DebugPrintErrorLevelLib|MdeModulePkg/Library/DxeDebugPrintErrorLevelLib/DxeDebugPrintErrorLevelLib.inf
113  PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
114  DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
115
116[LibraryClasses.common.USER_DEFINED]
117  DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
118  PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
119  ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
120  OemHookStatusCodeLib|Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/PeiNt32OemHookStatusCodeLib.inf
121  MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
122  PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
123
124[LibraryClasses.common.PEIM,LibraryClasses.common.PEI_CORE]
125  #
126  # PEI phase common
127  #
128  HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
129  MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
130  ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
131  ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf
132  BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptPei/BaseMemoryLibOptPei.inf
133  IoLib|MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf
134  PeCoffGetEntryPointLib|Nt32Pkg/Library/Nt32PeiPeCoffGetEntryPointLib/Nt32PeiPeCoffGetEntryPointLib.inf
135  PeCoffExtraActionLib|Nt32Pkg/Library/PeiNt32PeCoffExtraActionLib/PeiNt32PeCoffExtraActionLib.inf
136  DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
137
138[LibraryClasses.common.PEI_CORE]
139  PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
140  OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
141
142[LibraryClasses.common.PEIM]
143  PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
144  OemHookStatusCodeLib|Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/PeiNt32OemHookStatusCodeLib.inf
145
146[LibraryClasses.common]
147  #
148  # DXE phase common
149  #
150  BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.inf
151  HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
152  PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
153  MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
154  ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
155  OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
156  PeCoffExtraActionLib|Nt32Pkg/Library/DxeNt32PeCoffExtraActionLib/DxeNt32PeCoffExtraActionLib.inf
157  ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
158  WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
159
160[LibraryClasses.common.DXE_CORE]
161  HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
162  MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
163  PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
164
165[LibraryClasses.common.DXE_SMM_DRIVER]
166  DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
167
168[LibraryClasses.common.UEFI_DRIVER]
169  PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
170
171[LibraryClasses.common.UEFI_APPLICATION]
172  PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
173  PrintLib|MdeModulePkg/Library/DxePrintLibPrint2Protocol/DxePrintLibPrint2Protocol.inf
174
175################################################################################
176#
177# Pcd Section - list of all EDK II PCD Entries defined by this Platform
178#
179################################################################################
180[PcdsFeatureFlag]
181  gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE
182  gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE
183  gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreImageLoaderSearchTeSectionFirst|FALSE
184  gEfiMdeModulePkgTokenSpaceGuid.PcdVariableCollectStatistics|TRUE
185
186[PcdsFixedAtBuild]
187  gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizeNonPopulateCapsule|0x0
188  gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizePopulateCapsule|0x0
189  gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000040
190  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareFdSize|0x2a0000
191  gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x1f
192  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareVolume|L"..\\Fv\\Nt32.fd"
193  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareBlockSize|0x10000
194  gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x0f
195  gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE
196
197################################################################################
198#
199# Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
200#
201################################################################################
202[PcdsDynamicDefault.common.DEFAULT]
203  gEfiNt32PkgTokenSpaceGuid.PcdWinNtSerialPort|L"COM1!COM2"|VOID*|20
204  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFileSystem|L".!..\..\..\..\EdkShellBinPkg\Bin\Ia32\Apps"|VOID*|106
205  gEfiNt32PkgTokenSpaceGuid.PcdWinNtGop|L"UGA Window 1!UGA Window 2"|VOID*|52
206  gEfiNt32PkgTokenSpaceGuid.PcdWinNtConsole|L"Bus Driver Console Window"|VOID*|52
207  gEfiNt32PkgTokenSpaceGuid.PcdWinNtVirtualDisk|L"FW;40960;512"|VOID*|26
208  gEfiNt32PkgTokenSpaceGuid.PcdWinNtMemorySize|L"64!64"|VOID*|12
209  gEfiNt32PkgTokenSpaceGuid.PcdWinNtPhysicalDisk|L"a:RW;2880;512!d:RO;307200;2048!j:RW;262144;512"|VOID*|100
210  gEfiNt32PkgTokenSpaceGuid.PcdWinNtUga|L"UGA Window 1!UGA Window 2"|VOID*|52
211
212  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0
213  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0
214  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase|0
215
216[PcdsDynamicHii.common.DEFAULT]
217  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdSetupConOutColumn|L"SetupConsoleConfig"|gEfiGlobalVariableGuid|0x0|80
218  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdSetupConOutRow|L"SetupConsoleConfig"|gEfiGlobalVariableGuid|0x4|25
219  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPlatformBootTimeOut|L"Timeout"|gEfiGlobalVariableGuid|0x0|10
220  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdHardwareErrorRecordLevel|L"HwErrRecSupport"|gEfiGlobalVariableGuid|0x0|1
221
222###################################################################################################
223#
224# Components Section - list of the modules and components that will be processed by compilation
225#                      tools and the EDK II tools to generate PE32/PE32+/Coff image files.
226#
227# Note: The EDK II DSC file is not used to specify how compiled binary images get placed
228#       into firmware volume images. This section is just a list of modules to compile from
229#       source into UEFI-compliant binaries.
230#       It is the FDF file that contains information on combining binary files into firmware
231#       volume images, whose concept is beyond UEFI and is described in PI specification.
232#       Binary modules do not need to be listed in this section, as they should be
233#       specified in the FDF file. For example: Shell binary (Shell_Full.efi), FAT binary (Fat.efi),
234#       Logo (Logo.bmp), and etc.
235#       There may also be modules listed in this section that are not required in the FDF file,
236#       When a module listed here is excluded from FDF file, then UEFI-compliant binary will be
237#       generated for it, but the binary will not be put into any firmware volume.
238#
239###################################################################################################
240[Components.IA32]
241  ##
242  #  SEC Phase modules
243  ##
244  Nt32Pkg/Sec/SecMain.inf
245
246  ##
247  #  PEI Phase modules
248  ##
249  MdeModulePkg/Core/Pei/PeiMain.inf
250  MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
251    <LibraryClasses>
252      PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
253  }
254  MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf
255  MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf
256  Nt32Pkg/WinNtOemHookStatusCodeHandlerPei/WinNtOemHookStatusCodeHandlerPei.inf
257  Nt32Pkg/BootModePei/BootModePei.inf
258  Nt32Pkg/StallPei/StallPei.inf
259  Nt32Pkg/WinNtFlashMapPei/WinNtFlashMapPei.inf
260  MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
261  Nt32Pkg/WinNtAutoScanPei/WinNtAutoScanPei.inf
262  Nt32Pkg/WinNtFirmwareVolumePei/WinNtFirmwareVolumePei.inf
263  Nt32Pkg/WinNtThunkPPIToProtocolPei/WinNtThunkPPIToProtocolPei.inf
264  MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
265  ##
266  #  DXE Phase modules
267  ##
268  MdeModulePkg/Core/Dxe/DxeMain.inf {
269    <LibraryClasses>
270      NULL|MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/DxeCrc32GuidedSectionExtractLib.inf
271    <BuildOptions>
272      *_*_IA32_CC_FLAGS =
273  }
274
275  MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
276    <LibraryClasses>
277      PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
278  }
279  Nt32Pkg/MetronomeDxe/MetronomeDxe.inf
280  Nt32Pkg/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf
281  Nt32Pkg/ResetRuntimeDxe/ResetRuntimeDxe.inf
282  MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
283  Nt32Pkg/FvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf
284  MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
285  MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
286  MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
287  MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
288  Nt32Pkg/WinNtThunkDxe/WinNtThunkDxe.inf
289  Nt32Pkg/CpuRuntimeDxe/CpuRuntimeDxe.inf
290  MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
291  Nt32Pkg/MiscSubClassPlatformDxe/MiscSubClassPlatformDxe.inf
292  Nt32Pkg/TimerDxe/TimerDxe.inf
293  MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf
294  MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf
295  Nt32Pkg/WinNtOemHookStatusCodeHandlerDxe/WinNtOemHookStatusCodeHandlerDxe.inf
296  MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
297  MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
298  MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
299  MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
300  MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
301  MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf {
302    <LibraryClasses>
303      PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
304  }
305  MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf {
306    <LibraryClasses>
307      PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
308  }
309  MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf {
310    <LibraryClasses>
311      PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
312  }
313  MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
314  MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
315  MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
316  MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
317  MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
318  MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf     ##This driver follows UEFI specification definition
319  MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf    ##This driver follows UEFI specification definition
320  IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/IdeBusDxe.inf
321  Nt32Pkg/WinNtBusDriverDxe/WinNtBusDriverDxe.inf {
322    <LibraryClasses>
323      PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
324  }
325  Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIoDxe.inf
326  Nt32Pkg/WinNtSerialIoDxe/WinNtSerialIoDxe.inf
327  Nt32Pkg/WinNtGopDxe/WinNtGopDxe.inf
328  Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystemDxe.inf
329  MdeModulePkg/Application/HelloWorld/HelloWorld.inf
330
331  #
332  # Network stack drivers
333  # To test network drivers, need network Io driver(SnpNt32Io.dll), please refer to NETWORK-IO Subproject.
334  #
335  MdeModulePkg/Universal/Network/DpcDxe/DpcDxe.inf
336  MdeModulePkg/Universal/Network/ArpDxe/ArpDxe.inf
337  MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf
338  MdeModulePkg/Universal/Network/Ip4ConfigDxe/Ip4ConfigDxe.inf
339  MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Dxe.inf
340  MdeModulePkg/Universal/Network/MnpDxe/MnpDxe.inf
341  MdeModulePkg/Universal/Network/VlanConfigDxe/VlanConfigDxe.inf
342  MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
343  MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Dxe.inf
344  MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Dxe.inf
345  MdeModulePkg/Universal/Network/UefiPxeBcDxe/UefiPxeBcDxe.inf
346  Nt32Pkg/SnpNt32Dxe/SnpNt32Dxe.inf
347
348  MdeModulePkg/Universal/Network/IScsiDxe/IScsiDxe.inf
349
350  IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf
351  MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
352  MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
353  MdeModulePkg/Universal/PrintDxe/PrintDxe.inf
354  MdeModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf {
355    <LibraryClasses>
356      PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
357  }
358  MdeModulePkg/Application/VariableInfo/VariableInfo.inf
359
360  MdeModulePkg/Universal/PlatformDriOverrideDxe/PlatformDriOverrideDxe.inf
361
362###################################################################################################
363#
364# BuildOptions Section - Define the module specific tool chain flags that should be used as
365#                        the default flags for a module. These flags are appended to any 
366#                        standard flags that are defined by the build process. They can be 
367#                        applied for any modules or only those modules with the specific 
368#                        module style (EDK or EDKII) specified in [Components] section.
369#
370###################################################################################################
371[BuildOptions]
372  DEBUG_*_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=$(IMAGE_ENTRY_POINT) /BASE:0x10000 /ALIGN:4096 /FILEALIGN:4096 /SUBSYSTEM:CONSOLE
373  RELEASE_*_IA32_DLINK_FLAGS = /ALIGN:4096 /FILEALIGN:4096
374  *_*_IA32_CC_FLAGS = /D EFI_SPECIFICATION_VERSION=0x0002000A /D TIANO_RELEASE_VERSION=0x00080006
375
376#############################################################################################################
377# NOTE:
378# The following [Libraries.IA32] section is for building EDK module under the EDKII tool chain.
379# If you want build EDK module for Nt32 platform, please uncomment [Libraries.IA32] section and
380# libraries used by that EDK module.
381# Currently, Nt32 platform do not has any EDK style module
382#
383#
384#[Libraries.IA32]
385  #
386  # Libraries common to PEI and DXE
387  #
388  #  EdkCompatibilityPkg/Foundation/Efi/Guid/EfiGuidLib.inf
389  #  EdkCompatibilityPkg/Foundation/Framework/Guid/EdkFrameworkGuidLib.inf
390  #  EdkCompatibilityPkg/Foundation/Guid/EdkGuidLib.inf
391  #  EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/EfiCommonLib.inf
392  #  EdkCompatibilityPkg/Foundation/Cpu/Pentium/CpuIA32Lib/CpuIA32Lib.inf
393  #  EdkCompatibilityPkg/Foundation/Cpu/Itanium/CpuIa64Lib/CpuIA64Lib.inf
394  #  EdkCompatibilityPkg/Foundation/Library/CustomizedDecompress/CustomizedDecompress.inf
395  #  EdkCompatibilityPkg/Foundation/Library/CompilerStub/CompilerStubLib.inf
396  #  EdkCompatibilityPkg/Foundation/Library/Dxe/Hob/HobLib.inf
397
398  #
399  # PEI libraries
400  #
401  #  EdkCompatibilityPkg/Foundation/Framework/Ppi/EdkFrameworkPpiLib.inf
402  #  EdkCompatibilityPkg/Foundation/Ppi/EdkPpiLib.inf
403  #  EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/PeiLib.inf
404  #  EdkCompatibilityPkg/Foundation/Library/Pei/Hob/PeiHobLib.inf
405
406  #
407  # DXE libraries
408  #
409  #  EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/ArchProtocolLib.inf
410  #  EdkCompatibilityPkg/Foundation/Efi/Protocol/EfiProtocolLib.inf
411  #  EdkCompatibilityPkg/Foundation/Framework/Protocol/EdkFrameworkProtocolLib.inf
412  #  EdkCompatibilityPkg/Foundation/Protocol/EdkProtocolLib.inf
413  #  EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/EfiDriverLib.inf
414  #  EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/EfiRuntimeLib.inf
415  #  EdkCompatibilityPkg/Foundation/Library/Dxe/Graphics/Graphics.inf
416  #  EdkCompatibilityPkg/Foundation/Library/Dxe/EfiIfrSupportLib/EfiIfrSupportLib.inf
417  #  EdkCompatibilityPkg/Foundation/Library/Dxe/Print/PrintLib.inf
418  #  EdkCompatibilityPkg/Foundation/Library/Dxe/EfiScriptLib/EfiScriptLib.inf
419  #  EdkCompatibilityPkg/Foundation/Library/Dxe/EfiUiLib/EfiUiLib.inf
420
421  #
422  # Print/Graphics Library consume SetupBrowser Print Protocol
423  #
424  #  EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/PrintLib.inf
425  #  EdkCompatibilityPkg/Foundation/Library/Dxe/GraphicsLite/Graphics.inf
426
427