blob: ce59a7b6467025772a65cd012933f582ce580cdf [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
5# a real platform. This also provides an example for how an FPD is created.
6#
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
AJFISH97a079e2007-07-09 23:39:54 +000029 OUTPUT_DIRECTORY = $(WORKSPACE)/Build/NT32
klu225a201c2007-06-26 08:15:15 +000030 SUPPORTED_ARCHITECTURES = IA32
31 BUILD_TARGETS = DEBUG
32 SKUID_IDENTIFIER = DEFAULT
lgao424491cf2007-07-03 03:10:14 +000033 FLASH_DEFINITION = $(WORKSPACE)/Nt32Pkg/Nt32Pkg.fdf
klu225a201c2007-06-26 08:15:15 +000034
35 DEBUG_ICC_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
36 DEBUG_VS2003_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
37 DEBUG_MYTOOLS_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
38 DEBUG_WINDDK3790x1830_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
39 DEBUG_VS2005PRO_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
40 DEBUG_MIXED_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
41 RELEASE_ICC_IA32_DLINK_FLAGS = /ALIGN:4096
42 RELEASE_VS2003_IA32_DLINK_FLAGS = /ALIGN:4096
43 RELEASE_MYTOOLS_IA32_DLINK_FLAGS = /ALIGN:4096
44 RELEASE_WINDDK3790x1830_IA32_DLINK_FLAGS = /ALIGN:4096
45 RELEASE_VS2005PRO_IA32_DLINK_FLAGS = /ALIGN:4096
46 RELEASE_MIXED_IA32_DLINK_FLAGS = /ALIGN:4096
47
vanjeff2010c812007-07-04 02:30:58 +000048################################################################################
49#
50# SKU Identification section - list of all SKU IDs supported by this
51# Platform.
52#
53################################################################################
54[SkuIds]
55 0|DEFAULT # The entry: 0|DEFAULT is reserved and always required.
klu225a201c2007-06-26 08:15:15 +000056
57################################################################################
58#
59# Library Class section - list of all Library Classes needed by this Platform.
60#
61################################################################################
62
klu2869f8e32007-06-26 09:35:19 +000063[LibraryClasses.common]
klu2c53dbcf2007-06-27 09:18:20 +000064 TimerLib|$(WORKSPACE)/MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf
65 PrintLib|$(WORKSPACE)/MdePkg/Library/BasePrintLib/BasePrintLib.inf
vanjeff55206592007-07-02 03:11:11 +000066 SerialPortLib|$(WORKSPACE)/MdePkg/Library/SerialPortLibNull/SerialPortLibNull.inf
klu2c53dbcf2007-06-27 09:18:20 +000067 BaseMemoryLib|$(WORKSPACE)/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
68 BaseLib|$(WORKSPACE)/MdePkg/Library/BaseLib/BaseLib.inf
klu2c53dbcf2007-06-27 09:18:20 +000069 PerformanceLib|$(WORKSPACE)/MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
70 PeCoffLib|$(WORKSPACE)/MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
klu26fa9d092007-07-06 08:25:28 +000071 PciIncompatibleDeviceSupportLib|$(WORKSPACE)/IntelFrameworkModulePkg/Library/PciIncompatibleDeviceSupportLib/PciIncompatibleDeviceSupportLib.inf
klu2c53dbcf2007-06-27 09:18:20 +000072 CacheMaintenanceLib|$(WORKSPACE)/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
qwang121897b702007-07-03 02:34:30 +000073 IfrSupportLibFramework|$(WORKSPACE)/IntelFrameworkPkg/Library/IfrSupportLibFramework/IfrSupportLib.inf
qwang12c7f26242007-06-29 03:20:12 +000074 GraphicsLib|$(WORKSPACE)/IntelFrameworkModulePkg/Library/GraphicsLib/GraphicsLib.inf
klu26fa9d092007-07-06 08:25:28 +000075 FvbServiceLib|$(WORKSPACE)/MdeModulePkg/Library/EdkFvbServiceLib/EdkFvbServiceLib.inf
vanjeff6d2b4f22007-07-03 05:30:36 +000076 IoLib|$(WORKSPACE)/MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
vanjeff929e7bd2007-07-16 05:55:31 +000077 CustomDecompressLib|$(WORKSPACE)/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.inf
klu26fa9d092007-07-06 08:25:28 +000078 HiiLib|$(WORKSPACE)/IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
vanjeff929e7bd2007-07-16 05:55:31 +000079
AJFISHd6955582007-07-05 22:17:00 +000080[LibraryClasses.common.BASE]
81 DebugLib|$(WORKSPACE)/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
82
83[LibraryClasses.common.SEC]
84 DebugLib|$(WORKSPACE)/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
85
vanjeff6d2b4f22007-07-03 05:30:36 +000086[LibraryClasses.common.DXE_CORE]
87 DevicePathLib|$(WORKSPACE)/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
klu26fa9d092007-07-06 08:25:28 +000088 UefiDecompressLib|$(WORKSPACE)/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf
vanjeff6d2b4f22007-07-03 05:30:36 +000089 UefiBootServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
90 HobLib|$(WORKSPACE)/MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
91 DxeCoreEntryPoint|$(WORKSPACE)/MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
92 CustomDecompressLib|$(WORKSPACE)/MdeModulePkg/Library/DxeCoreCustomDecompressLibFromHob/DxeCoreCustomDecompressLibFromHob.inf
93 MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
94 UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
95 ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
klu2be29ac92007-07-06 05:19:36 +000096 PeCoffLoaderLib|$(WORKSPACE)/MdeModulePkg/Library/DxePeCoffLoaderFromHobLib/DxePeCoffLoaderFromHobLib.inf
klu256a71b52007-07-05 15:27:43 +000097 UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
AJFISHd6955582007-07-05 22:17:00 +000098 DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
vanjeff6d2b4f22007-07-03 05:30:36 +000099
klu225a201c2007-06-26 08:15:15 +0000100
klu2869f8e32007-06-26 09:35:19 +0000101[LibraryClasses.common.DXE_SMM_DRIVER]
klu2c53dbcf2007-06-27 09:18:20 +0000102 DxeServicesTableLib|$(WORKSPACE)/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
klu23a10d472007-06-29 03:33:17 +0000103 ScsiLib|$(WORKSPACE)/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000104 UefiDecompressLib|$(WORKSPACE)/MdeModulePkg/Library/DxeCoreUefiDecompressLibFromHob/DxeCoreUefiDecompressLibFromHob.inf
qwang1229aa45b2007-06-29 08:47:14 +0000105 HiiLibFramework|$(WORKSPACE)/IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000106 UefiBootServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
107 HobLib|$(WORKSPACE)/MdePkg/Library/DxeHobLib/DxeHobLib.inf
108 DevicePathLib|$(WORKSPACE)/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
klu2cba90122007-07-10 08:57:25 +0000109 PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000110 MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000111 UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
klu2de4c8a32007-06-28 08:36:46 +0000112 ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000113 UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
vanjeff6d2b4f22007-07-03 05:30:36 +0000114 WinNtLib|$(WORKSPACE)/Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
115 OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
klu2cba90122007-07-10 08:57:25 +0000116 PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
AJFISHd6955582007-07-05 22:17:00 +0000117 DebugLib|$(WORKSPACE)/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
klu225a201c2007-06-26 08:15:15 +0000118
klu2869f8e32007-06-26 09:35:19 +0000119[LibraryClasses.common.PEIM]
klu2c53dbcf2007-06-27 09:18:20 +0000120 HobLib|$(WORKSPACE)/MdePkg/Library/PeiHobLib/PeiHobLib.inf
klu2cba90122007-07-10 08:57:25 +0000121 PcdLib|$(WORKSPACE)/MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000122 IoLib|$(WORKSPACE)/MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf
klu2c53dbcf2007-06-27 09:18:20 +0000123 PeimEntryPoint|$(WORKSPACE)/MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
124 PeiServicesLib|$(WORKSPACE)/MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000125 MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
vanjeff55206592007-07-02 03:11:11 +0000126 ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
klu256a71b52007-07-05 15:27:43 +0000127 PeCoffLoaderLib|$(WORKSPACE)/Nt32Pkg/Library/Nt32PeCoffLoaderLib/Nt32PeCoffLoaderLib.inf
vanjeff6d2b4f22007-07-03 05:30:36 +0000128 PeiServicesTablePointerLib|$(WORKSPACE)/MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
129 OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/PeiNt32OemHookStatusCodeLib.inf
klu2b3002092007-07-09 01:36:16 +0000130 PeCoffGetEntryPointLib|$(WORKSPACE)/Nt32Pkg/Library/Nt32PeiPeCoffGetEntryPointLib/Nt32PeiPeCoffGetEntryPointLib.inf
AJFISHd6955582007-07-05 22:17:00 +0000131 DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
klu225a201c2007-06-26 08:15:15 +0000132
klu2869f8e32007-06-26 09:35:19 +0000133[LibraryClasses.common.PEI_CORE]
klu2c53dbcf2007-06-27 09:18:20 +0000134 HobLib|$(WORKSPACE)/MdePkg/Library/PeiHobLib/PeiHobLib.inf
135 PeiServicesTablePointerLib|$(WORKSPACE)/MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000136 IoLib|$(WORKSPACE)/MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf
klu2c53dbcf2007-06-27 09:18:20 +0000137 PeiServicesLib|$(WORKSPACE)/MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
138 MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
139 PeiCoreEntryPoint|$(WORKSPACE)/MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
klu22e7a6632007-07-05 09:41:22 +0000140 OldPeiCoreEntryPoint|$(WORKSPACE)/MdePkg/Library/OldPeiCoreEntryPoint/OldPeiCoreEntryPoint.inf
vanjeff55206592007-07-02 03:11:11 +0000141 ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
klu2b3002092007-07-09 01:36:16 +0000142 PeCoffGetEntryPointLib|$(WORKSPACE)/Nt32Pkg/Library/Nt32PeiPeCoffGetEntryPointLib/Nt32PeiPeCoffGetEntryPointLib.inf
klu2cba90122007-07-10 08:57:25 +0000143 PcdLib|$(WORKSPACE)/MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
AJFISHd6955582007-07-05 22:17:00 +0000144 DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
klu225a201c2007-06-26 08:15:15 +0000145
klu2869f8e32007-06-26 09:35:19 +0000146[LibraryClasses.common.DXE_RUNTIME_DRIVER]
klu2c53dbcf2007-06-27 09:18:20 +0000147 UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
148 HobLib|$(WORKSPACE)/MdePkg/Library/DxeHobLib/DxeHobLib.inf
klu2cba90122007-07-10 08:57:25 +0000149 PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000150 MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
151 UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
152 UefiDriverEntryPoint|$(WORKSPACE)/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
klu2de4c8a32007-06-28 08:36:46 +0000153 ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000154 DxeServicesTableLib|$(WORKSPACE)/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
155 UefiDecompressLib|$(WORKSPACE)/MdeModulePkg/Library/DxeCoreUefiDecompressLibFromHob/DxeCoreUefiDecompressLibFromHob.inf
qwang1229aa45b2007-06-29 08:47:14 +0000156 HiiLibFramework|$(WORKSPACE)/IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000157 UefiBootServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
158 DevicePathLib|$(WORKSPACE)/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000159 UefiRuntimeLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
klu23a10d472007-06-29 03:33:17 +0000160 ScsiLib|$(WORKSPACE)/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000161 UefiDriverModelLib|$(WORKSPACE)/MdePkg/Library/UefiDriverModelLib/UefiDriverModelLib.inf
vanjeff6d2b4f22007-07-03 05:30:36 +0000162 WinNtLib|$(WORKSPACE)/Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
163 OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
AJFISHd6955582007-07-05 22:17:00 +0000164 DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
klu225a201c2007-06-26 08:15:15 +0000165
klu2869f8e32007-06-26 09:35:19 +0000166[LibraryClasses.common.UEFI_DRIVER]
klu2c53dbcf2007-06-27 09:18:20 +0000167 UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
168 HobLib|$(WORKSPACE)/MdePkg/Library/DxeHobLib/DxeHobLib.inf
klu2cba90122007-07-10 08:57:25 +0000169 PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000170 MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
171 UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
172 UefiDriverEntryPoint|$(WORKSPACE)/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
klu2de4c8a32007-06-28 08:36:46 +0000173 ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000174 DxeServicesTableLib|$(WORKSPACE)/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
175 UefiDecompressLib|$(WORKSPACE)/MdeModulePkg/Library/DxeCoreUefiDecompressLibFromHob/DxeCoreUefiDecompressLibFromHob.inf
qwang1229aa45b2007-06-29 08:47:14 +0000176 HiiLibFramework|$(WORKSPACE)/IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000177 UefiBootServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
178 DevicePathLib|$(WORKSPACE)/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
klu23a10d472007-06-29 03:33:17 +0000179 ScsiLib|$(WORKSPACE)/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000180 UefiDriverModelLib|$(WORKSPACE)/MdePkg/Library/UefiDriverModelLib/UefiDriverModelLib.inf
vanjeff6d2b4f22007-07-03 05:30:36 +0000181 WinNtLib|$(WORKSPACE)/Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
182 OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
AJFISHd6955582007-07-05 22:17:00 +0000183 DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
klu225a201c2007-06-26 08:15:15 +0000184
klu2869f8e32007-06-26 09:35:19 +0000185[LibraryClasses.common.DXE_DRIVER]
klu2c53dbcf2007-06-27 09:18:20 +0000186 UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
187 HobLib|$(WORKSPACE)/MdePkg/Library/DxeHobLib/DxeHobLib.inf
klu2cba90122007-07-10 08:57:25 +0000188 PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000189 MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
190 UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
191 UefiDriverEntryPoint|$(WORKSPACE)/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
klu2de4c8a32007-06-28 08:36:46 +0000192 ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000193 DxeServicesTableLib|$(WORKSPACE)/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
194 UefiDecompressLib|$(WORKSPACE)/MdeModulePkg/Library/DxeCoreUefiDecompressLibFromHob/DxeCoreUefiDecompressLibFromHob.inf
qwang1229aa45b2007-06-29 08:47:14 +0000195 HiiLibFramework|$(WORKSPACE)/IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000196 UefiBootServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
197 DevicePathLib|$(WORKSPACE)/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
klu23a10d472007-06-29 03:33:17 +0000198 ScsiLib|$(WORKSPACE)/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000199 UefiDriverModelLib|$(WORKSPACE)/MdePkg/Library/UefiDriverModelLib/UefiDriverModelLib.inf
vanjeff6d2b4f22007-07-03 05:30:36 +0000200 WinNtLib|$(WORKSPACE)/Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
201 OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
202 EdkGenericBdsLib|$(WORKSPACE)/Nt32Pkg/Library/EdkGenericBdsLib/EdkGenericBdsLib.inf
AJFISHd6955582007-07-05 22:17:00 +0000203 DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
klu225a201c2007-06-26 08:15:15 +0000204
klu2869f8e32007-06-26 09:35:19 +0000205[LibraryClasses.common.UEFI_APPLICATION]
klu2c53dbcf2007-06-27 09:18:20 +0000206 DxeServicesTableLib|$(WORKSPACE)/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
klu23a10d472007-06-29 03:33:17 +0000207 ScsiLib|$(WORKSPACE)/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000208 UefiDecompressLib|$(WORKSPACE)/MdeModulePkg/Library/DxeCoreUefiDecompressLibFromHob/DxeCoreUefiDecompressLibFromHob.inf
qwang1229aa45b2007-06-29 08:47:14 +0000209 HiiLibFramework|$(WORKSPACE)/IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000210 UefiApplicationEntryPoint|$(WORKSPACE)/MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
211 UefiBootServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
212 HobLib|$(WORKSPACE)/MdePkg/Library/DxeHobLib/DxeHobLib.inf
213 DevicePathLib|$(WORKSPACE)/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
214 EdkIfrSupportLib|$(WORKSPACE)/MdeModulePkg/Library/EdkIfrSupportLib/EdkIfrSupportLib.inf
klu2cba90122007-07-10 08:57:25 +0000215 PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000216 MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000217 UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
klu2de4c8a32007-06-28 08:36:46 +0000218 ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
klu2c53dbcf2007-06-27 09:18:20 +0000219 UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
vanjeff6d2b4f22007-07-03 05:30:36 +0000220 WinNtLib|$(WORKSPACE)/Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
221 OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
AJFISHd6955582007-07-05 22:17:00 +0000222 DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
vanjeff4cf1c1b2007-06-28 15:16:51 +0000223
klu225a201c2007-06-26 08:15:15 +0000224
225################################################################################
226#
227# Pcd Section - list of all EDK II PCD Entries defined by this Platform
228#
229################################################################################
230
xgu395276122007-07-05 07:05:28 +0000231[PcdsFeatureFlag.common]
klu2b79cf162007-07-06 17:04:09 +0000232 PcdDevicePathSupportDevicePathFromText|gEfiMdeModulePkgTokenSpaceGuid|FALSE
233 PcdDevicePathSupportDevicePathToText|gEfiMdeModulePkgTokenSpaceGuid|FALSE
klu2be29ac92007-07-06 05:19:36 +0000234 PcdDxeIplSupportCustomDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
vanjeff929e7bd2007-07-16 05:55:31 +0000235 PcdDxeIplBuildShareCodeHobs|gEfiMdeModulePkgTokenSpaceGuid|TRUE
klu2be29ac92007-07-06 05:19:36 +0000236 PcdDxeIplSupportEfiDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
237 PcdDxeIplSupportTianoDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
vanjeff929e7bd2007-07-16 05:55:31 +0000238 PcdDxeIplSupportCustomDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
AJFISH7658d602007-07-13 22:51:36 +0000239 PcdUefiVariableDefaultLangDepricate|gEfiMdePkgTokenSpaceGuid|FALSE
xgu395276122007-07-05 07:05:28 +0000240
klu2869f8e32007-06-26 09:35:19 +0000241[PcdsPatchableInModule.IA32]
vanjeff55206592007-07-02 03:11:11 +0000242 PcdStatusCodeMemorySize|gEfiIntelFrameworkModulePkgTokenSpaceGuid|1
243 PcdStatusCodeRuntimeMemorySize|gEfiIntelFrameworkModulePkgTokenSpaceGuid|128
klu225a201c2007-06-26 08:15:15 +0000244
klu2869f8e32007-06-26 09:35:19 +0000245[PcdsFixedAtBuild.IA32]
AJFISH7658d602007-07-13 22:51:36 +0000246 PcdWinNtMemorySizeForSecMain|gEfiNt32PkgTokenSpaceGuid|L"64!64"|12
klu22e19fd02007-07-03 09:18:19 +0000247 PcdWinNtFirmwareVolume|gEfiNt32PkgTokenSpaceGuid|L"..\\Fv\\Fv_Recovery.fd"|52
klu225a201c2007-06-26 08:15:15 +0000248 PcdWinNtBootMode|gEfiNt32PkgTokenSpaceGuid|1
249 PcdMaximumUnicodeStringLength|gEfiMdePkgTokenSpaceGuid|1000000
250 PcdMaximumAsciiStringLength|gEfiMdePkgTokenSpaceGuid|1000000
251 PcdMaximumLinkedListLength|gEfiMdePkgTokenSpaceGuid|1000000
252 PcdSpinLockTimeout|gEfiMdePkgTokenSpaceGuid|10000000
klu225a201c2007-06-26 08:15:15 +0000253 PcdMaximumAsciiStringLength|gEfiMdePkgTokenSpaceGuid|1000000
254 PcdMaximumLinkedListLength|gEfiMdePkgTokenSpaceGuid|1000000
255 PcdSpinLockTimeout|gEfiMdePkgTokenSpaceGuid|10000000
klu27d421cf2007-07-06 03:54:26 +0000256 PcdReportStatusCodePropertyMask|gEfiMdePkgTokenSpaceGuid|0x0f
klu225a201c2007-06-26 08:15:15 +0000257 PcdDebugPropertyMask|gEfiMdePkgTokenSpaceGuid|0x1f
258 PcdDebugClearMemoryValue|gEfiMdePkgTokenSpaceGuid|0xAF
klu256a71b52007-07-05 15:27:43 +0000259 PcdDebugPrintErrorLevel|gEfiMdePkgTokenSpaceGuid|0x80000040
klu225a201c2007-06-26 08:15:15 +0000260 PcdPerformanceLibraryPropertyMask|gEfiMdePkgTokenSpaceGuid|0
261 PcdMaxPeiPcdCallBackNumberPerPcdEntry|gEfiMdeModulePkgTokenSpaceGuid|0x08
klu23111e7b2007-07-06 16:09:37 +0000262 PcdVpdBaseAddress|gEfiMdeModulePkgTokenSpaceGuid|0x0
263 PcdMaxSizeNonPopulateCapsule|gEfiMdeModulePkgTokenSpaceGuid|0x0
264 PcdMaxSizePopulateCapsule|gEfiMdeModulePkgTokenSpaceGuid|0x0
qhuang835ccc742007-06-29 08:10:42 +0000265 PcdPciIncompatibleDeviceSupportMask|gEfiIntelFrameworkModulePkgTokenSpaceGuid|0
AJFISH97a079e2007-07-09 23:39:54 +0000266 PcdStatusCodeValueUncorrectableMemoryError|gEfiMdePkgTokenSpaceGuid|0x0005100 # EFI_COMPUTING_UNIT_MEMORY | EFI_CU_MEMORY_EC_UNCORRECTABLE3
267 PcdStatusCodeValueRemoteConsoleError|gEfiMdePkgTokenSpaceGuid|0x01040006 # EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_EC_CONTROLLER_ERROR
268 PcdStatusCodeValueRemoteConsoleReset|gEfiMdePkgTokenSpaceGuid|0x01040001 # EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_PC_RESET
269 PcdStatusCodeValueRemoteConsoleInputError|gEfiMdePkgTokenSpaceGuid|0x01040007 # EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_EC_INPUT_ERROR
270 PcdStatusCodeValueRemoteConsoleOutputError|gEfiMdePkgTokenSpaceGuid|0x01040008 # EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_EC_OUTPUT_ERROR
AJFISH7658d602007-07-13 22:51:36 +0000271 PcdUefiVariableDefaultTimeout|gEfiMdePkgTokenSpaceGuid|0x0008
272 PcdUefiVariableDefaultLangCodes|gEfiMdePkgTokenSpaceGuid|"engfra"|7
273 PcdUefiVariableDefaultLang|gEfiMdePkgTokenSpaceGuid|"eng"|4
274 PcdUefiVariableDefaultPlatformLangCodes|gEfiMdePkgTokenSpaceGuid|"en;fr"|6
275 PcdUefiVariableDefaultPlatformLang|gEfiMdePkgTokenSpaceGuid|"en"|2
klu2869f8e32007-06-26 09:35:19 +0000276
277[PcdsFeatureFlag.IA32]
klu23111e7b2007-07-06 16:09:37 +0000278 PcdPeiPcdDatabaseTraverseEnabled|gEfiMdeModulePkgTokenSpaceGuid|TRUE
279 PcdPeiPcdDatabaseCallbackOnSetEnabled|gEfiMdeModulePkgTokenSpaceGuid|TRUE
280 PcdPeiPcdDatabaseExEnabled|gEfiMdeModulePkgTokenSpaceGuid|TRUE
281 PcdPeiPcdDatabaseGetSizeEnabled|gEfiMdeModulePkgTokenSpaceGuid|TRUE
282 PcdPeiPcdDatabaseSetEnabled|gEfiMdeModulePkgTokenSpaceGuid|TRUE
vanjeff55206592007-07-02 03:11:11 +0000283 PcdStatusCodeUseSerial|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
284 PcdStatusCodeUseMemory|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
285 PcdStatusCodeUseOEM|gEfiIntelFrameworkModulePkgTokenSpaceGuid|TRUE
klu225a201c2007-06-26 08:15:15 +0000286 PcdDxeIplSwitchToLongMode|gEfiMdeModulePkgTokenSpaceGuid|FALSE
287 PcdDxeIplSupportEfiDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
288 PcdDxeIplSupportTianoDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
289 PcdDxeIplSupportCustomDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
vanjeff929e7bd2007-07-16 05:55:31 +0000290 PcdDxeIplBuildShareCodeHobs|gEfiMdeModulePkgTokenSpaceGuid|TRUE
klu23111e7b2007-07-06 16:09:37 +0000291 PcdDxePcdDatabaseTraverseEnabled|gEfiMdeModulePkgTokenSpaceGuid|TRUE
vanjeff55206592007-07-02 03:11:11 +0000292 PcdStatusCodeUseHardSerial|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
293 PcdStatusCodeUseEfiSerial|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
294 PcdStatusCodeUseRuntimeMemory|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
295 PcdStatusCodeUseDataHub|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
296 PcdStatusCodeUseOEM|gEfiIntelFrameworkModulePkgTokenSpaceGuid|TRUE
297 PcdStatusCodeReplayInSerial|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
298 PcdStatusCodeReplayInDataHub|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
299 PcdStatusCodeReplayInRuntimeMemory|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
300 PcdStatusCodeReplayInOEM|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
klu225a201c2007-06-26 08:15:15 +0000301 PcdSupportUpdateCapsuleRest|gEfiMdeModulePkgTokenSpaceGuid|FALSE
302 PcdComponentNameDisable|gEfiMdePkgTokenSpaceGuid|FALSE
303 PcdDriverDiagnosticsDisable|gEfiMdePkgTokenSpaceGuid|FALSE
304 PcdNtEmulatorEnable|gEfiMdeModulePkgTokenSpaceGuid|FALSE
klu225a201c2007-06-26 08:15:15 +0000305 PcdDevicePathSupportDevicePathToText|gEfiMdeModulePkgTokenSpaceGuid|TRUE
306 PcdDevicePathSupportDevicePathFromText|gEfiMdeModulePkgTokenSpaceGuid|TRUE
klu225a201c2007-06-26 08:15:15 +0000307 PcdPciBusHotplugDeviceSupport|gEfiGenericPlatformTokenSpaceGuid|TRUE
klu2869f8e32007-06-26 09:35:19 +0000308 PcdComponentName2Disable|gEfiMdePkgTokenSpaceGuid|TRUE
309 PcdUefiLibMaxPrintBufferSize|gEfiMdePkgTokenSpaceGuid|320
310 PcdDriverDiagnostics2Disable|gEfiMdePkgTokenSpaceGuid|TRUE
klu2b79cf162007-07-06 17:04:09 +0000311 PcdSupportUpdateCapsuleRest|gEfiMdeModulePkgTokenSpaceGuid|FALSE
qhuang835ccc742007-06-29 08:10:42 +0000312 PcdPciIsaEnable|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
313 PcdPciVgaEnable|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
314 PcdPciBusHotplugDeviceSupport|gEfiIntelFrameworkModulePkgTokenSpaceGuid|TRUE
AJFISHba237732007-07-03 18:34:24 +0000315 PcdStatusCodeValueEfiWatchDogTimerExpired|gEfiMdePkgTokenSpaceGuid|0x00011003
316 PcdStatusCodeValueMemoryTestStarted|gEfiMdePkgTokenSpaceGuid|0x00051006
317 PcdStatusCodeValueSetVirtualAddressMap|gEfiMdePkgTokenSpaceGuid|0x03101004
318 PcdStatusCodeValueUncorrectableMemoryError|gEfiMdePkgTokenSpaceGuid|0x00051003
319
320
klu225a201c2007-06-26 08:15:15 +0000321
322################################################################################
323#
324# Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
325#
326################################################################################
327
jwang362cb630b2007-07-06 07:41:51 +0000328[PcdsDynamicDefault.common.DEFAULT]
klu225a201c2007-06-26 08:15:15 +0000329 PcdWinNtCpuSpeed|gEfiNt32PkgTokenSpaceGuid|L"3000"|8
klu225a201c2007-06-26 08:15:15 +0000330 PcdWinNtSerialPort|gEfiNt32PkgTokenSpaceGuid|L"COM1!COM2"|18
331 PcdWinNtFileSystem|gEfiNt32PkgTokenSpaceGuid|L".!..\\..\\..\\..\\EdkShellBinPkg\\bin\\ia32\\Apps"|106
klu225a201c2007-06-26 08:15:15 +0000332 PcdWinNtGop|gEfiNt32PkgTokenSpaceGuid|L"UGA Window 1!UGA Window 2"|50
333 PcdWinNtConsole|gEfiNt32PkgTokenSpaceGuid|L"Bus Driver Console Window"|50
klu225a201c2007-06-26 08:15:15 +0000334 PcdWinNtMemorySize|gEfiNt32PkgTokenSpaceGuid|L"64!64"|10
335 PcdWinNtVirtualDisk|gEfiNt32PkgTokenSpaceGuid|L"FW;40960;512"|24
336 PcdWinNtCpuModel|gEfiNt32PkgTokenSpaceGuid|L"Intel(R) Processor Model"|48
337 PcdWinNtPhysicalDisk|gEfiNt32PkgTokenSpaceGuid|L"E:RW;245760;512"|30
klu225a201c2007-06-26 08:15:15 +0000338 PcdWinNtUga|gEfiNt32PkgTokenSpaceGuid|L"UGA Window 1!UGA Window 2"|50
klu2276be2d2007-07-10 14:51:34 +0000339 PcdFlashNvStorageFtwSpareBase|gEfiMdeModulePkgTokenSpaceGuid|0x0
340 PcdFlashNvStorageFtwSpareSize|gEfiMdeModulePkgTokenSpaceGuid|0x280000
341 PcdFlashNvStorageFtwWorkingBase|gEfiMdeModulePkgTokenSpaceGuid|0x28e000
342 PcdFlashNvStorageFtwWorkingSize|gEfiMdeModulePkgTokenSpaceGuid|0x2000
343 PcdFlashNvStorageVariableBase|gEfiMdeModulePkgTokenSpaceGuid|0x280000
344 PcdFlashNvStorageVariableSize|gEfiMdeModulePkgTokenSpaceGuid|0x00c000
klu225a201c2007-06-26 08:15:15 +0000345
346################################################################################
347#
348# Components Section - list of all EDK II Modules needed by this Platform
349#
350################################################################################
351
352[Components.IA32]
klu204eced52007-07-06 14:56:41 +0000353 ##
354 # SEC Phase modules
355 ##
356 $(WORKSPACE)/Nt32Pkg/Sec/SecMain.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000357
klu204eced52007-07-06 14:56:41 +0000358 ##
359 # PEI Phase modules
360 ##
361 $(WORKSPACE)/MdeModulePkg/Core/Pei/PeiMain.inf
362 $(WORKSPACE)/MdeModulePkg/Universal/PCD/Pei/Pcd.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000363 $(WORKSPACE)/IntelFrameworkModulePkg/Universal/StatusCode/Pei/PeiStatusCode.inf
lgao499214142007-07-02 08:40:26 +0000364 $(WORKSPACE)/Nt32Pkg/BootModePei/BootMode.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000365 $(WORKSPACE)/Nt32Pkg/WinNtFlashMapPei/FlashMap.inf
366 $(WORKSPACE)/MdeModulePkg/Universal/BaseMemoryTestPei/BaseMemoryTest.inf
klu204eced52007-07-06 14:56:41 +0000367 $(WORKSPACE)/MdeModulePkg/Universal/VariablePei/Variable.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000368 $(WORKSPACE)/Nt32Pkg/WinNtAutoScanPei/WinNtAutoScan.inf
klu204eced52007-07-06 14:56:41 +0000369 $(WORKSPACE)/Nt32Pkg/WinNtFirmwareVolumePei/WinNtFwh.inf
qhuang86ec032f2007-06-28 14:21:17 +0000370 $(WORKSPACE)/Nt32Pkg/WinNtThunkPPIToProtocolPei/WinNtThunkPPIToProtocol.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000371 $(WORKSPACE)/MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
372
klu204eced52007-07-06 14:56:41 +0000373 ##
374 # DXE Phase modules
375 ##
vanjeff929e7bd2007-07-16 05:55:31 +0000376 $(WORKSPACE)/MdeModulePkg/Core/Dxe/DxeMain.inf
klu2cba90122007-07-10 08:57:25 +0000377 $(WORKSPACE)/MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
378 <LibraryClass>
379 PcdLib|$(WORKSPACE)/MdeModulePkg/Library/PcdDriverPcdLibNull/PcdLib.inf
380 }
qwang121897b702007-07-03 02:34:30 +0000381 $(WORKSPACE)/Nt32Pkg/MetronomeDxe/Metronome.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000382 $(WORKSPACE)/Nt32Pkg/RealTimeClockRuntimeDxe/RealTimeClock.inf
klu204eced52007-07-06 14:56:41 +0000383 $(WORKSPACE)/Nt32Pkg/ResetRuntimeDxe/Reset.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000384 $(WORKSPACE)/MdeModulePkg/Universal/RuntimeDxe/Runtime.inf
385 $(WORKSPACE)/Nt32Pkg/FvbServicesRuntimeDxe/Nt32Fwh.inf
lgao499214142007-07-02 08:40:26 +0000386 $(WORKSPACE)/MdeModulePkg/Universal/SecurityStubDxe/SecurityStub.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000387 $(WORKSPACE)/IntelFrameworkModulePkg/Universal/DataHub/DataHub/Dxe/DataHub.inf
lgao499214142007-07-02 08:40:26 +0000388 $(WORKSPACE)/MdeModulePkg/Universal/Ebc/Dxe/Ebc.inf
389 $(WORKSPACE)/MdeModulePkg/Universal/GenericMemoryTest/Dxe/NullMemoryTest.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000390 $(WORKSPACE)/IntelFrameworkModulePkg/Universal/HiiDataBaseDxe/HiiDatabase.inf
klu204eced52007-07-06 14:56:41 +0000391 $(WORKSPACE)/Nt32Pkg/WinNtThunkDxe/WinNtThunk.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000392 $(WORKSPACE)/MdeModulePkg/Universal/FirmwareVolume/GuidedSectionExtraction/Crc32SectionExtract/Dxe/Crc32SectionExtract.inf
393 $(WORKSPACE)/Nt32Pkg/CpuRuntimeDxe/Cpu.inf
394 $(WORKSPACE)/Nt32Pkg/PlatformBdsDxe/PlatformBds.inf
395 $(WORKSPACE)/MdeModulePkg/Universal/FirmwareVolume/FaultTolerantWriteLite/Dxe/FtwLite.inf
qhuang86ec032f2007-06-28 14:21:17 +0000396 $(WORKSPACE)/IntelFrameworkModulePkg/Universal/DataHub/DataHubStdErr/Dxe/DataHubStdErr.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000397 $(WORKSPACE)/Nt32Pkg/MiscSubClassPlatformDxe/MiscSubclassDriver.inf
398 $(WORKSPACE)/Nt32Pkg/TimerDxe/Timer.inf
399 $(WORKSPACE)/IntelFrameworkModulePkg/Universal/StatusCode/Dxe/DxeStatusCode.inf
400 $(WORKSPACE)/MdeModulePkg/Universal/VariableRuntimeDxe/Variable.inf
klu204eced52007-07-06 14:56:41 +0000401 $(WORKSPACE)/MdeModulePkg/Universal/WatchDogTimerDxe/WatchDogTimer.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000402 $(WORKSPACE)/MdeModulePkg/Universal/MonotonicCounterDxe/MonotonicCounter.inf
403 $(WORKSPACE)/MdeModulePkg/Universal/Capsule/RuntimeDxe/CapsuleRuntime.inf
klu256a71b52007-07-05 15:27:43 +0000404 $(WORKSPACE)/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatform.inf
405 $(WORKSPACE)/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitter.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000406 $(WORKSPACE)/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.inf
klu256a71b52007-07-05 15:27:43 +0000407 $(WORKSPACE)/MdeModulePkg/Universal/Console/TerminalDxe/Terminal.inf
klu204eced52007-07-06 14:56:41 +0000408 $(WORKSPACE)/MdeModulePkg/Universal/DevicePathDxe/DevicePath.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000409 $(WORKSPACE)/MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
410 $(WORKSPACE)/MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
klu204eced52007-07-06 14:56:41 +0000411 $(WORKSPACE)/IntelFrameworkModulePkg/Universal/SetupBrowserDxe/SetupBrowser.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000412 $(WORKSPACE)/MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
413 $(WORKSPACE)/MdeModulePkg/Bus/Pci/AtapiPassThruDxe/AtapiPassThru.inf
klu204eced52007-07-06 14:56:41 +0000414 $(WORKSPACE)/IntelFrameworkModulePkg/Bus/Pci/PciBus/Dxe/PciBus.inf
415 $(WORKSPACE)/MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBus.inf ##This driver follows UEFI specification definition
416 $(WORKSPACE)/MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDisk.inf ##This driver follows UEFI specification definition
417 $(WORKSPACE)/IntelFrameworkModulePkg/Bus/Pci/IdeBus/Dxe/IdeBus.inf
418 $(WORKSPACE)/MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBus.inf
419 $(WORKSPACE)/MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDisk.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000420 $(WORKSPACE)/Nt32Pkg/WinNtBusDriverDxe/WinNtBusDriver.inf
klu204eced52007-07-06 14:56:41 +0000421 $(WORKSPACE)/Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIo.inf
422 $(WORKSPACE)/Nt32Pkg/WinNtConsoleDxe/WinNtConsole.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000423 $(WORKSPACE)/Nt32Pkg/WinNtSerialIoDxe/WinNtSerialIo.inf
424 $(WORKSPACE)/Nt32Pkg/WinNtGopDxe/WinNtGop.inf
425 $(WORKSPACE)/Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystem.inf
klu204eced52007-07-06 14:56:41 +0000426 $(WORKSPACE)/IntelFrameworkModulePkg/Universal/DriverSampleDxe/DriverSample.inf
427 $(WORKSPACE)/MdeModulePkg/Application/HelloWorld/HelloWorld.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000428
jwang362cb630b2007-07-06 07:41:51 +0000429[BuildOptions]
430 MSFT:DEBUG_*_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
431 MSFT:RELEASE_*_IA32_DLINK_FLAGS = /ALIGN:4096