blob: c1f05acbadd1b4a8484145f5a0b74c69b20b5860 [file] [log] [blame]
klu225a201c2007-06-26 08:15:15 +00001#/** @file
2# EFI/Framework Emulation Platform
3#
4# The Emulation Platform can be used to debug individual modules, prior to creating
klu2d10385c2007-07-27 04:34:27 +00005# a real platform. This also provides an example for how an DSC is created.
klu225a201c2007-06-26 08:15:15 +00006#
7# Copyright (c) 2006 - 2007, 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
vanjeff4cf1c1b2007-06-28 15:16:51 +000013#
klu225a201c2007-06-26 08:15:15 +000014# 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
AJFISH409f6782007-07-27 19:07:27 +000029 OUTPUT_DIRECTORY = Build/NT32
klu225a201c2007-06-26 08:15:15 +000030 SUPPORTED_ARCHITECTURES = IA32
31 BUILD_TARGETS = DEBUG
32 SKUID_IDENTIFIER = DEFAULT
AJFISH409f6782007-07-27 19:07:27 +000033 FLASH_DEFINITION = Nt32Pkg/Nt32Pkg.fdf
klu225a201c2007-06-26 08:15:15 +000034
klu225a201c2007-06-26 08:15:15 +000035
vanjeff2010c812007-07-04 02:30:58 +000036################################################################################
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.
klu225a201c2007-06-26 08:15:15 +000044
45################################################################################
46#
47# Library Class section - list of all Library Classes needed by this Platform.
48#
49################################################################################
50
klu2869f8e32007-06-26 09:35:19 +000051[LibraryClasses.common]
AJFISH409f6782007-07-27 19:07:27 +000052 TimerLib|MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf
53 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
54 SerialPortLib|MdePkg/Library/SerialPortLibNull/SerialPortLibNull.inf
55 BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
56 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
57 PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
58 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
59 PciIncompatibleDeviceSupportLib|IntelFrameworkModulePkg/Library/PciIncompatibleDeviceSupportLib/PciIncompatibleDeviceSupportLib.inf
60 CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
61 IfrSupportLibFramework|IntelFrameworkPkg/Library/IfrSupportLibFramework/IfrSupportLib.inf
62 GraphicsLib|IntelFrameworkModulePkg/Library/GraphicsLib/GraphicsLib.inf
63 FvbServiceLib|MdeModulePkg/Library/EdkFvbServiceLib/EdkFvbServiceLib.inf
64 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
lgao439a4d282007-08-08 14:54:14 +000065 UefiDecompressLib|IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.inf
jwang36c76af112007-08-08 10:00:18 +000066 HiiLibFramework|IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
klu24fb31c22007-09-26 09:35:36 +000067 S3Lib|MdeModulePkg/Library/PeiS3LibNull/PeiS3LibNull.inf
68 RecoveryLib|MdeModulePkg/Library/PeiRecoveryLibNull/PeiRecoveryLibNull.inf
lgao418fd8d62007-09-29 08:04:29 +000069 ExtractGuidedSectionLib|MdePkg/Library/PeiDxeExtractGuidedSectionLib/PeiDxeExtractGuidedSectionLib.inf
klu25e106e52007-09-28 09:03:37 +000070
AJFISHd6955582007-07-05 22:17:00 +000071[LibraryClasses.common.BASE]
AJFISH409f6782007-07-27 19:07:27 +000072 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
klu22f053c92007-08-10 05:29:46 +000073 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.inf
AJFISHd6955582007-07-05 22:17:00 +000074
jwang36fdcc2fd2007-07-25 06:24:23 +000075[LibraryClasses.common.USER_DEFINED]
AJFISH409f6782007-07-27 19:07:27 +000076 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
klu22f053c92007-08-10 05:29:46 +000077 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.inf
jwang36fdcc2fd2007-07-25 06:24:23 +000078
AJFISHd6955582007-07-05 22:17:00 +000079[LibraryClasses.common.SEC]
AJFISH409f6782007-07-27 19:07:27 +000080 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
klu22f053c92007-08-10 05:29:46 +000081 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.inf
lgao43d7b0992007-09-28 08:14:30 +000082 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
AJFISHd6955582007-07-05 22:17:00 +000083
vanjeff6d2b4f22007-07-03 05:30:36 +000084[LibraryClasses.common.DXE_CORE]
AJFISH409f6782007-07-27 19:07:27 +000085 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
AJFISH409f6782007-07-27 19:07:27 +000086 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
87 HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
88 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
AJFISH409f6782007-07-27 19:07:27 +000089 MemoryAllocationLib|MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
90 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
klu22f053c92007-08-10 05:29:46 +000091 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
AJFISH409f6782007-07-27 19:07:27 +000092 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
klu22f053c92007-08-10 05:29:46 +000093 DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
klu2d4b7ad52007-09-17 03:04:55 +000094 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
lgao43d7b0992007-09-28 08:14:30 +000095 PeCoffLib|Nt32Pkg/Library/DxeNT32PeCoffLib/DxeNT32PeCoffLib.inf
klu225a201c2007-06-26 08:15:15 +000096
klu2869f8e32007-06-26 09:35:19 +000097[LibraryClasses.common.DXE_SMM_DRIVER]
AJFISH409f6782007-07-27 19:07:27 +000098 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
99 ScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000100 HiiLibFramework|IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
101 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
102 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
103 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
104 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
105 MemoryAllocationLib|MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
106 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
klu22f053c92007-08-10 05:29:46 +0000107 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000108 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
109 WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
110 OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
111 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
112 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
klu225a201c2007-06-26 08:15:15 +0000113
klu2869f8e32007-06-26 09:35:19 +0000114[LibraryClasses.common.PEIM]
AJFISH409f6782007-07-27 19:07:27 +0000115 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
116 PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
117 IoLib|MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf
118 PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
119 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
120 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
klu22f053c92007-08-10 05:29:46 +0000121 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000122 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
123 OemHookStatusCodeLib|Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/PeiNt32OemHookStatusCodeLib.inf
124 PeCoffGetEntryPointLib|Nt32Pkg/Library/Nt32PeiPeCoffGetEntryPointLib/Nt32PeiPeCoffGetEntryPointLib.inf
klu22f053c92007-08-10 05:29:46 +0000125 DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
lgao43d7b0992007-09-28 08:14:30 +0000126 PeCoffLib|Nt32Pkg/Library/PeiNT32PeCoffLib/PeiNT32PeCoffLib.inf
klu25e106e52007-09-28 09:03:37 +0000127 PeiPiLib|MdePkg/Library/PeiPiLib/PeiPiLib.inf
128
klu2869f8e32007-06-26 09:35:19 +0000129[LibraryClasses.common.PEI_CORE]
AJFISH409f6782007-07-27 19:07:27 +0000130 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
131 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
132 IoLib|MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf
133 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
134 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
135 PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
klu22f053c92007-08-10 05:29:46 +0000136 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000137 PeCoffGetEntryPointLib|Nt32Pkg/Library/Nt32PeiPeCoffGetEntryPointLib/Nt32PeiPeCoffGetEntryPointLib.inf
klu2d4b7ad52007-09-17 03:04:55 +0000138 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
klu22f053c92007-08-10 05:29:46 +0000139 DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
lgao43d7b0992007-09-28 08:14:30 +0000140 PeCoffLib|Nt32Pkg/Library/PeiCoreNT32PeCoffLib/PeiCoreNT32PeCoffLib.inf
klu225a201c2007-06-26 08:15:15 +0000141
klu2869f8e32007-06-26 09:35:19 +0000142[LibraryClasses.common.DXE_RUNTIME_DRIVER]
AJFISH409f6782007-07-27 19:07:27 +0000143 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
144 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
145 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
146 MemoryAllocationLib|MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
147 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
148 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
klu22f053c92007-08-10 05:29:46 +0000149 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000150 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000151 HiiLibFramework|IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
152 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
153 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
154 UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
155 ScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000156 WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
157 OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
klu22f053c92007-08-10 05:29:46 +0000158 DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
klu225a201c2007-06-26 08:15:15 +0000159
klu2869f8e32007-06-26 09:35:19 +0000160[LibraryClasses.common.UEFI_DRIVER]
AJFISH409f6782007-07-27 19:07:27 +0000161 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
162 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
163 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
164 MemoryAllocationLib|MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
165 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
166 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
klu22f053c92007-08-10 05:29:46 +0000167 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000168 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000169 HiiLibFramework|IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
170 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
171 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
172 ScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000173 WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
174 OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
klu22f053c92007-08-10 05:29:46 +0000175 DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
klu225a201c2007-06-26 08:15:15 +0000176
klu2869f8e32007-06-26 09:35:19 +0000177[LibraryClasses.common.DXE_DRIVER]
AJFISH409f6782007-07-27 19:07:27 +0000178 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
179 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
180 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
181 MemoryAllocationLib|MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
182 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
183 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
klu22f053c92007-08-10 05:29:46 +0000184 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000185 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000186 HiiLibFramework|IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
187 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
188 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
189 ScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000190 WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
191 OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
192 EdkGenericBdsLib|Nt32Pkg/Library/EdkGenericBdsLib/EdkGenericBdsLib.inf
klu22f053c92007-08-10 05:29:46 +0000193 DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
vanjeff593a8302007-09-04 08:42:53 +0000194 NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf
195 IpIoLib|MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf
196 UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf
klu225a201c2007-06-26 08:15:15 +0000197
klu2869f8e32007-06-26 09:35:19 +0000198[LibraryClasses.common.UEFI_APPLICATION]
AJFISH409f6782007-07-27 19:07:27 +0000199 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
200 ScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000201 HiiLibFramework|IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
202 UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
203 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
204 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
205 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000206 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
207 MemoryAllocationLib|MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
208 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
klu22f053c92007-08-10 05:29:46 +0000209 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000210 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
211 WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
212 OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
klu22f053c92007-08-10 05:29:46 +0000213 DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
vanjeff4cf1c1b2007-06-28 15:16:51 +0000214
klu225a201c2007-06-26 08:15:15 +0000215
216################################################################################
217#
218# Pcd Section - list of all EDK II PCD Entries defined by this Platform
219#
220################################################################################
221
xgu395276122007-07-05 07:05:28 +0000222[PcdsFeatureFlag.common]
qhuang8b3af5df2007-08-30 09:11:54 +0000223 gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText|FALSE
224 gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText|FALSE
225 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportCustomDecompress|TRUE
226 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplBuildShareCodeHobs|TRUE
227 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportEfiDecompress|TRUE
228 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportTianoDecompress|TRUE
229 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportCustomDecompress|TRUE
230 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangDepricate|FALSE
xgu395276122007-07-05 07:05:28 +0000231
klu213759162007-08-02 09:02:47 +0000232[PcdsFixedAtBuild.IA32]
qhuang8b3af5df2007-08-30 09:11:54 +0000233 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
234 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeRuntimeMemorySize|128
235 gEfiNt32PkgTokenSpaceGuid.PcdWinNtMemorySizeForSecMain|L"64!64"|VOID*|12
236 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareVolume|L"..\\Fv\\Fv_Recovery.fd"|VOID*|52
237 gEfiNt32PkgTokenSpaceGuid.PcdWinNtBootMode|1
238 gEfiMdePkgTokenSpaceGuid.PcdMaximumUnicodeStringLength|1000000
239 gEfiMdePkgTokenSpaceGuid.PcdMaximumAsciiStringLength|1000000
240 gEfiMdePkgTokenSpaceGuid.PcdMaximumLinkedListLength|1000000
241 gEfiMdePkgTokenSpaceGuid.PcdSpinLockTimeout|10000000
242 gEfiMdePkgTokenSpaceGuid.PcdMaximumAsciiStringLength|1000000
243 gEfiMdePkgTokenSpaceGuid.PcdMaximumLinkedListLength|1000000
244 gEfiMdePkgTokenSpaceGuid.PcdSpinLockTimeout|10000000
245 gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x0f
246 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x1f
247 gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue|0xAF
248 gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000040
249 gEfiMdePkgTokenSpaceGuid.PcdPerformanceLibraryPropertyMask|0
250 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxPeiPcdCallBackNumberPerPcdEntry|0x08
251 gEfiMdeModulePkgTokenSpaceGuid.PcdVpdBaseAddress|0x0
252 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizeNonPopulateCapsule|0x0
253 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizePopulateCapsule|0x0
254 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciIncompatibleDeviceSupportMask|0
255 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueUncorrectableMemoryError|0x0005100 # EFI_COMPUTING_UNIT_MEMORY | EFI_CU_MEMORY_EC_UNCORRECTABLE3
256 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueRemoteConsoleError|0x01040006 # EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_EC_CONTROLLER_ERROR
257 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueRemoteConsoleReset|0x01040001 # EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_PC_RESET
258 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueRemoteConsoleInputError|0x01040007 # EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_EC_INPUT_ERROR
259 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueRemoteConsoleOutputError|0x01040008 # EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_EC_OUTPUT_ERROR
260 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultTimeout|0x0008
261 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangCodes|"engfra"|VOID*|7
262 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLang|"eng"|VOID*|4
263 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLangCodes|"en;fr"|VOID*|6
264 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang|"en"|VOID*|3
265 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueEfiWatchDogTimerExpired|0x00011003
266 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueMemoryTestStarted|0x00051006
267 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueSetVirtualAddressMap|0x03101004
268 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueUncorrectableMemoryError|0x00051003
269 gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|320
270 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate|115200
271 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits|8
272 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity|1
273 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits|1
274 gEfiMdePkgTokenSpaceGuid.PcdDefaultTerminalType|0
klu2869f8e32007-06-26 09:35:19 +0000275
qhuang8b3af5df2007-08-30 09:11:54 +0000276 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareFdSize|0x2a0000
277 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareBlockSize|0x10000
278 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageEventLogBase|0x28c000
279 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageEventLogSize|0x2000
280 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashFvRecoveryBase|0x0
281 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashFvRecoverySize|0x280000
yshang16d3aa332007-08-03 08:52:48 +0000282
qhuang8b3af5df2007-08-30 09:11:54 +0000283 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageVariableBase|0x280000
284 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageFtwSpareBase|0x290000
285 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageFtwWorkingBase|0x28e000
yshang16d3aa332007-08-03 08:52:48 +0000286
qhuang8b3af5df2007-08-30 09:11:54 +0000287 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize|0x10000
288 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize|0x2000
289 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize|0x00c000
lgao418fd8d62007-09-29 08:04:29 +0000290 gEfiMdePkgTokenSpaceGuid.PcdMaximumGuidedExtractHandler|0x10
yshang16d3aa332007-08-03 08:52:48 +0000291
klu2869f8e32007-06-26 09:35:19 +0000292[PcdsFeatureFlag.IA32]
qhuang8b3af5df2007-08-30 09:11:54 +0000293 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiPcdDatabaseTraverseEnabled|TRUE
294 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiPcdDatabaseCallbackOnSetEnabled|TRUE
295 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiPcdDatabaseExEnabled|TRUE
296 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiPcdDatabaseGetSizeEnabled|TRUE
297 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiPcdDatabaseSetEnabled|TRUE
298 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE
299 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory|FALSE
300 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseOEM|TRUE
301 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE
yshang15d582952007-09-28 08:22:33 +0000302 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplEnableIdt|FALSE
qhuang8b3af5df2007-08-30 09:11:54 +0000303 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportEfiDecompress|TRUE
304 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportTianoDecompress|TRUE
305 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportCustomDecompress|TRUE
306 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplBuildShareCodeHobs|TRUE
307 gEfiMdeModulePkgTokenSpaceGuid.PcdDxePcdDatabaseTraverseEnabled|TRUE
308 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseHardSerial|FALSE
309 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseEfiSerial|FALSE
310 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseRuntimeMemory|FALSE
311 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseDataHub|FALSE
312 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseOEM|TRUE
313 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeReplayInSerial|FALSE
314 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeReplayInDataHub|FALSE
315 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeReplayInRuntimeMemory|FALSE
316 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeReplayInOEM|FALSE
317 gEfiMdeModulePkgTokenSpaceGuid.PcdSupportUpdateCapsuleRest|FALSE
318 gEfiMdePkgTokenSpaceGuid.PcdComponentNameDisable|FALSE
319 gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnosticsDisable|FALSE
320 gEfiMdeModulePkgTokenSpaceGuid.PcdNtEmulatorEnable|FALSE
321 gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText|TRUE
322 gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText|TRUE
qhuang88270a5f2007-09-29 11:28:21 +0000323 gEfiMdePkgTokenSpaceGuid.PcdComponentName2Disable|FALSE
324 gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnostics2Disable|FALSE
qhuang8b3af5df2007-08-30 09:11:54 +0000325 gEfiMdeModulePkgTokenSpaceGuid.PcdSupportUpdateCapsuleRest|FALSE
326 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciIsaEnable|FALSE
327 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciVgaEnable|FALSE
328 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciBusHotplugDeviceSupport|TRUE
AJFISHba237732007-07-03 18:34:24 +0000329
330
klu225a201c2007-06-26 08:15:15 +0000331
332################################################################################
333#
334# Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
335#
336################################################################################
337
jwang362cb630b2007-07-06 07:41:51 +0000338[PcdsDynamicDefault.common.DEFAULT]
qhuang8b3af5df2007-08-30 09:11:54 +0000339 gEfiNt32PkgTokenSpaceGuid.PcdWinNtSerialPort|L"COM1!COM2"|VOID*|18
340 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFileSystem|L".!..\\..\\..\\..\\EdkShellBinPkg\\bin\\ia32\\Apps"|VOID*|106
341 gEfiNt32PkgTokenSpaceGuid.PcdWinNtGop|L"UGA Window 1!UGA Window 2"|VOID*|50
342 gEfiNt32PkgTokenSpaceGuid.PcdWinNtConsole|L"Bus Driver Console Window"|VOID*|50
343 gEfiNt32PkgTokenSpaceGuid.PcdWinNtVirtualDisk|L"FW;40960;512"|VOID*|24
qhuang8b3af5df2007-08-30 09:11:54 +0000344 gEfiNt32PkgTokenSpaceGuid.PcdWinNtMemorySize|L"64!64"|VOID*|10
345 gEfiNt32PkgTokenSpaceGuid.PcdWinNtPhysicalDisk|L"a:RW;2880;512!d:RO;307200;2048!j:RW;262144;512"|VOID*|100
346 gEfiNt32PkgTokenSpaceGuid.PcdWinNtUga|L"UGA Window 1!UGA Window 2"|VOID*|50
yshang16d3aa332007-08-03 08:52:48 +0000347
qhuang8b3af5df2007-08-30 09:11:54 +0000348 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0
349 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0
350 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase|0
klu225a201c2007-06-26 08:15:15 +0000351
352################################################################################
353#
354# Components Section - list of all EDK II Modules needed by this Platform
355#
356################################################################################
357
358[Components.IA32]
klu204eced52007-07-06 14:56:41 +0000359 ##
360 # SEC Phase modules
361 ##
AJFISH409f6782007-07-27 19:07:27 +0000362 Nt32Pkg/Sec/SecMain.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000363
klu204eced52007-07-06 14:56:41 +0000364 ##
365 # PEI Phase modules
366 ##
AJFISH409f6782007-07-27 19:07:27 +0000367 MdeModulePkg/Core/Pei/PeiMain.inf
qhuang876b0f6a2007-08-03 06:02:26 +0000368 MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
qhuang8b3af5df2007-08-30 09:11:54 +0000369 <LibraryClasses>
qhuang876b0f6a2007-08-03 06:02:26 +0000370 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
371 }
AJFISH409f6782007-07-27 19:07:27 +0000372 IntelFrameworkModulePkg/Universal/StatusCode/Pei/PeiStatusCode.inf
373 Nt32Pkg/BootModePei/BootModePei.inf
374 Nt32Pkg/WinNtFlashMapPei/WinNtFlashMapPei.inf
375 MdeModulePkg/Universal/MemoryTest/BaseMemoryTestPei/BaseMemoryTestPei.inf
376 MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
377 Nt32Pkg/WinNtAutoScanPei/WinNtAutoScanPei.inf
378 Nt32Pkg/WinNtFirmwareVolumePei/WinNtFirmwareVolumePei.inf
379 Nt32Pkg/WinNtThunkPPIToProtocolPei/WinNtThunkPPIToProtocolPei.inf
380 MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
klu204eced52007-07-06 14:56:41 +0000381 ##
382 # DXE Phase modules
383 ##
AJFISH409f6782007-07-27 19:07:27 +0000384 MdeModulePkg/Core/Dxe/DxeMain.inf
385 MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
qhuang8b3af5df2007-08-30 09:11:54 +0000386 <LibraryClasses>
yshang1cdebf6c2007-08-15 06:17:29 +0000387 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
klu2cba90122007-07-10 08:57:25 +0000388 }
AJFISH409f6782007-07-27 19:07:27 +0000389 Nt32Pkg/MetronomeDxe/MetronomeDxe.inf
vanjeff593a8302007-09-04 08:42:53 +0000390 Nt32Pkg/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf
AJFISH409f6782007-07-27 19:07:27 +0000391 Nt32Pkg/ResetRuntimeDxe/ResetRuntimeDxe.inf
392 MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
393 Nt32Pkg/FvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf
394 MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
395 IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf
396 MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
397 MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
398 IntelFrameworkModulePkg/Universal/HiiDataBaseDxe/HiiDatabase.inf
399 Nt32Pkg/WinNtThunkDxe/WinNtThunkDxe.inf
vanjeff593a8302007-09-04 08:42:53 +0000400 MdeModulePkg/Universal/FirmwareVolume/Crc32SectionExtractDxe/Crc32SectionExtractDxe.inf
401 Nt32Pkg/CpuRuntimeDxe/CpuRuntimeDxe.inf
402 Nt32Pkg/PlatformBdsDxe/PlatformBdsDxe.inf
403 MdeModulePkg/Universal/FirmwareVolume/FaultTolerantWriteDxe/FtwLite.inf
AJFISH409f6782007-07-27 19:07:27 +0000404 IntelFrameworkModulePkg/Universal/DataHubStdErrDxe/DataHubStdErrDxe.inf
405 Nt32Pkg/MiscSubClassPlatformDxe/MiscSubClassPlatformDxe.inf
406 Nt32Pkg/TimerDxe/TimerDxe.inf
407 IntelFrameworkModulePkg/Universal/StatusCode/Dxe/DxeStatusCode.inf
408 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
409 MdeModulePkg/Universal/WatchDogTimerDxe/WatchDogTimer.inf
410 MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
411 MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
412 MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
413 MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
414 MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
415 MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
416 MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
417 MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
418 MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
419 IntelFrameworkModulePkg/Universal/SetupBrowserDxe/SetupBrowser.inf
420 MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
421 MdeModulePkg/Bus/Pci/AtapiPassThruDxe/AtapiPassThru.inf
422 IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
423 MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf ##This driver follows UEFI specification definition
424 MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf ##This driver follows UEFI specification definition
425 IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/IdeBusDxe.inf
426 Nt32Pkg/WinNtBusDriverDxe/WinNtBusDriverDxe.inf
427 Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIoDxe.inf
428 Nt32Pkg/WinNtConsoleDxe/WinNtConsoleDxe.inf
429 Nt32Pkg/WinNtSerialIoDxe/WinNtSerialIoDxe.inf
430 Nt32Pkg/WinNtGopDxe/WinNtGopDxe.inf
431 Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystemDxe.inf
432 IntelFrameworkModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf
433 MdeModulePkg/Application/HelloWorld/HelloWorld.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000434
vanjeff593a8302007-09-04 08:42:53 +0000435 #
436 # Network stack drivers
437 # To test network drivers, need network Io driver(SnpNt32Io.dll), please refer to NETWORK-IO Subproject.
438 #
439 MdeModulePkg/Universal/Network/ArpDxe/ArpDxe.inf
440 MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf
441 MdeModulePkg/Universal/Network/Ip4ConfigDxe/Ip4ConfigDxe.inf
442 MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Dxe.inf
443 MdeModulePkg/Universal/Network/MnpDxe/MnpDxe.inf
444 MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
445 MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Dxe.inf
446 MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Dxe.inf
447 Nt32Pkg/SnpNt32Dxe/SnpNt32Dxe.inf
448
jwang362cb630b2007-07-06 07:41:51 +0000449[BuildOptions]
lhauchd8f31a22007-09-26 21:58:22 +0000450 DEBUG_ICC_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
451 DEBUG_VS2003_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
452 DEBUG_MYTOOLS_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
453 DEBUG_WINDDK3790x1830_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
454 DEBUG_VS2005PRO_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
455 DEBUG_MIXED_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
456 RELEASE_ICC_IA32_DLINK_FLAGS = /ALIGN:4096
457 RELEASE_VS2003_IA32_DLINK_FLAGS = /ALIGN:4096
458 RELEASE_MYTOOLS_IA32_DLINK_FLAGS = /ALIGN:4096
459 RELEASE_WINDDK3790x1830_IA32_DLINK_FLAGS = /ALIGN:4096
460 RELEASE_VS2005PRO_IA32_DLINK_FLAGS = /ALIGN:4096
461 RELEASE_MIXED_IA32_DLINK_FLAGS = /ALIGN:4096
AJFISHb397fbb2007-07-26 21:33:37 +0000462 MSFT:DEBUG_*_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
463 MSFT:RELEASE_*_IA32_DLINK_FLAGS = /ALIGN:4096