blob: 19acfb1802df289e441244f099c0b9d72f43a3a6 [file] [log] [blame]
lgao47b202cb2010-02-23 23:58:38 +00001## @file
jljusten49ba9442009-05-27 21:10:18 +00002# EFI/Framework Open Virtual Machine Firmware (OVMF) platform
3#
jljustenc1c26692010-01-04 16:17:59 +00004# Copyright (c) 2006 - 2010, Intel Corporation
jljusten49ba9442009-05-27 21:10:18 +00005#
6# All rights reserved. This program and the accompanying materials
7# are licensed and made available under the terms and conditions of the BSD License
8# which accompanies this distribution. The full text of the license may be found at
9# http://opensource.org/licenses/bsd-license.php
10#
11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13#
lgao47b202cb2010-02-23 23:58:38 +000014##
jljusten49ba9442009-05-27 21:10:18 +000015
16################################################################################
17#
18# Defines Section - statements that will be processed to create a Makefile.
19#
20################################################################################
21[Defines]
22 PLATFORM_NAME = Ovmf
23 PLATFORM_GUID = 5a9e7754-d81b-49ea-85ad-69eaa7b1539b
24 PLATFORM_VERSION = 0.1
klu2713b7b52009-10-22 06:30:20 +000025 DSC_SPECIFICATION = 0x00010005
jljusten49ba9442009-05-27 21:10:18 +000026 OUTPUT_DIRECTORY = Build/Ovmf3264
27 SUPPORTED_ARCHITECTURES = IA32|X64
28 BUILD_TARGETS = DEBUG|RELEASE
29 SKUID_IDENTIFIER = DEFAULT
30 FLASH_DEFINITION = OvmfPkg/OvmfPkgIa32X64.fdf
31
jljusten0bc7e562010-01-04 16:18:02 +000032[BuildOptions]
33 GCC:*_*_*_CC_FLAGS = -DMDEPKG_NDEBUG
34 INTEL:*_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
35 MSFT:*_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
36
jljusten49ba9442009-05-27 21:10:18 +000037################################################################################
38#
39# SKU Identification section - list of all SKU IDs supported by this Platform.
40#
41################################################################################
42[SkuIds]
43 0|DEFAULT
44
45################################################################################
46#
47# Library Class section - list of all Library Classes needed by this Platform.
48#
49################################################################################
lgao47b202cb2010-02-23 23:58:38 +000050[LibraryClasses]
jljusten49ba9442009-05-27 21:10:18 +000051 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
52 TimerLib|OvmfPkg/Library/AcpiTimerLib/AcpiTimerLib.inf
53 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
54 BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
55 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
56 SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
57 CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
58 PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
59 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
60 PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
jljusten49ba9442009-05-27 21:10:18 +000061 CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
62 UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf
63 UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
64 HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
jljusten49ba9442009-05-27 21:10:18 +000065 GenericBdsLib|IntelFrameworkModulePkg/Library/GenericBdsLib/GenericBdsLib.inf
66 CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
67 DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
68 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
69 PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf
70 PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
71 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
xli241630c6d2009-12-29 09:36:05 +000072 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
jljusten49ba9442009-05-27 21:10:18 +000073 SerialPortLib|PcAtChipsetPkg/Library/SerialIoLib/SerialIoLib.inf
74 MtrrLib|UefiCpuPkg/Library/MtrrLib/MtrrLib.inf
jljusten86fef5b2009-06-30 15:57:29 +000075 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
76 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
77 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
78 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
79 UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
80 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
jljusten14b21de2009-09-16 16:29:03 +000081 NvVarsFileLib|OvmfPkg/Library/NvVarsFileLib/NvVarsFileLib.inf
82 FileHandleLib|ShellPkg/Library/BaseFileHandleLib/BaseFileHandleLib.inf
qhuang8284af942009-11-25 04:26:09 +000083 UefiCpuLib|UefiCpuPkg/Library/BaseUefiCpuLib/BaseUefiCpuLib.inf
lgao48273af42009-11-26 01:33:07 +000084 SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
jljusten49ba9442009-05-27 21:10:18 +000085
86[LibraryClasses.common.SEC]
jljusten8cf01ca2010-01-04 16:17:56 +000087 BaseMemoryLib|MdePkg/Library/BaseMemoryLibSse2/BaseMemoryLibSse2.inf
jljusten49ba9442009-05-27 21:10:18 +000088 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
xli24abec2e52009-12-29 09:10:05 +000089 ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
jljustenc1c26692010-01-04 16:17:59 +000090 ExtractGuidedSectionLib|OvmfPkg/Library/SecExtractGuidedSectionLib/SecExtractGuidedSectionLib.inf
jljusten49ba9442009-05-27 21:10:18 +000091
92[LibraryClasses.common.PEI_CORE]
jljusten8cf01ca2010-01-04 16:17:56 +000093 BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptPei/BaseMemoryLibOptPei.inf
jljusten49ba9442009-05-27 21:10:18 +000094 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
95 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
96 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
97 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
98 PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
xli24abec2e52009-12-29 09:10:05 +000099 ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
xli241630c6d2009-12-29 09:36:05 +0000100 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
jljusten49ba9442009-05-27 21:10:18 +0000101 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
102 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
103 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
104
105[LibraryClasses.common.PEIM]
jljusten8cf01ca2010-01-04 16:17:56 +0000106 BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptPei/BaseMemoryLibOptPei.inf
jljusten49ba9442009-05-27 21:10:18 +0000107 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
108 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
109 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
110 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
111 PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
xli24abec2e52009-12-29 09:10:05 +0000112 ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
xli241630c6d2009-12-29 09:36:05 +0000113 OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
jljusten49ba9442009-05-27 21:10:18 +0000114 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
115 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
116 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
117 PeiResourcePublicationLib|MdePkg/Library/PeiResourcePublicationLib/PeiResourcePublicationLib.inf
118 ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf
119
120[LibraryClasses.common.DXE_CORE]
jljusten8cf01ca2010-01-04 16:17:56 +0000121 BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.inf
jljusten49ba9442009-05-27 21:10:18 +0000122 HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
123 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
124 MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
xli24abec2e52009-12-29 09:10:05 +0000125 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
jljusten49ba9442009-05-27 21:10:18 +0000126 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
127 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
128 ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
129
130[LibraryClasses.common.DXE_RUNTIME_DRIVER]
jljusten8cf01ca2010-01-04 16:17:56 +0000131 BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.inf
jljusten49ba9442009-05-27 21:10:18 +0000132 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
133 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
134 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
xli24abec2e52009-12-29 09:10:05 +0000135 ReportStatusCodeLib|MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/RuntimeDxeReportStatusCodeLib.inf
jljusten49ba9442009-05-27 21:10:18 +0000136 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
137 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
jljusten49ba9442009-05-27 21:10:18 +0000138 UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
139 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
jljusten49ba9442009-05-27 21:10:18 +0000140
141[LibraryClasses.common.UEFI_DRIVER]
jljusten8cf01ca2010-01-04 16:17:56 +0000142 BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.inf
jljusten49ba9442009-05-27 21:10:18 +0000143 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
144 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
145 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
xli24abec2e52009-12-29 09:10:05 +0000146 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
jljusten49ba9442009-05-27 21:10:18 +0000147 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
148 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
jljusten49ba9442009-05-27 21:10:18 +0000149 UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
150
151[LibraryClasses.common.DXE_DRIVER]
jljusten8cf01ca2010-01-04 16:17:56 +0000152 BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.inf
jljusten49ba9442009-05-27 21:10:18 +0000153 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
154 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
155 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
xli24abec2e52009-12-29 09:10:05 +0000156 ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
jljusten49ba9442009-05-27 21:10:18 +0000157 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
jljusten49ba9442009-05-27 21:10:18 +0000158 UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
159 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
160 NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf
161 IpIoLib|MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf
162 UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf
163 DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf
164 PlatformBdsLib|OvmfPkg/Library/PlatformBdsLib/PlatformBdsLib.inf
165
jljusten86fef5b2009-06-30 15:57:29 +0000166[LibraryClasses.common.UEFI_APPLICATION]
jljusten8cf01ca2010-01-04 16:17:56 +0000167 BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.inf
jljusten86fef5b2009-06-30 15:57:29 +0000168 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
169 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
170 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
171
jljusten49ba9442009-05-27 21:10:18 +0000172################################################################################
173#
174# Pcd Section - list of all EDK II PCD Entries defined by this Platform.
175#
176################################################################################
lgao47b202cb2010-02-23 23:58:38 +0000177[PcdsFeatureFlag]
jljustene8d1b8d2010-01-04 16:18:03 +0000178 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE
179 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory|TRUE
jljusten49ba9442009-05-27 21:10:18 +0000180
lgao47b202cb2010-02-23 23:58:38 +0000181[PcdsFixedAtBuild]
xli24e6d3b272009-12-25 06:36:10 +0000182 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
jljusten49ba9442009-05-27 21:10:18 +0000183 gEfiSioTokenSpaceGuid.PcdSerialRegisterBase|0x3F8
184 gEfiSioTokenSpaceGuid.PcdSerialLineControl|0x07
185 gEfiSioTokenSpaceGuid.PcdSerialBoudRate|115200
186
jljusten49ba9442009-05-27 21:10:18 +0000187 gEfiMdePkgTokenSpaceGuid.PcdMaximumGuidedExtractHandler|0x10
188 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxFvSupported|6
189 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeimPerFv|32
190 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x400
191 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxHardwareErrorVariableSize|0x8000
jljusten27f58ea2009-09-26 07:15:51 +0000192 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0xc000
193 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize|0xc000
194 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize|0x2000
195 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize|0x10000
jljusten49ba9442009-05-27 21:10:18 +0000196
197 gEfiEdkModulePkgTokenSpaceGuid.PcdDxePcdDatabaseTraverseEnabled|TRUE
198 gEfiMdeModulePkgTokenSpaceGuid.PcdVpdBaseAddress|0x0
199
lgao47b202cb2010-02-23 23:58:38 +0000200[PcdsFeatureFlag]
jljusten49ba9442009-05-27 21:10:18 +0000201 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportUefiDecompress|FALSE
202 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|TRUE
203
204 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport|TRUE
205 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|FALSE
206 gOptionRomPkgTokenSpaceGuid.PcdSupportGop|TRUE
207 gOptionRomPkgTokenSpaceGuid.PcdSupportUga|FALSE
208
lgao47b202cb2010-02-23 23:58:38 +0000209[PcdsFixedAtBuild]
jljusten49ba9442009-05-27 21:10:18 +0000210 gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07
211 gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x8000004F
212 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x2F
213
jljusten49ba9442009-05-27 21:10:18 +0000214################################################################################
215#
216# Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
217#
218################################################################################
219
lgao47b202cb2010-02-23 23:58:38 +0000220[PcdsDynamicDefault]
jljusten77ba9932009-09-07 20:18:17 +0000221 gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvStoreReserved|0
jljusten27f58ea2009-09-26 07:15:51 +0000222 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase|0
223 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0
224 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0
225
jljusten49ba9442009-05-27 21:10:18 +0000226
227################################################################################
228#
229# Components Section - list of all EDK II Modules needed by this Platform.
230#
231################################################################################
232[Components.IA32]
233 #
234 # SEC Phase modules
235 #
jljustenc1c26692010-01-04 16:17:59 +0000236 OvmfPkg/Sec/SecMain.inf {
237 <LibraryClasses>
238 NULL|IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
239 }
jljusten49ba9442009-05-27 21:10:18 +0000240
241 #
242 # PEI Phase modules
243 #
244 MdeModulePkg/Core/Pei/PeiMain.inf
245 MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
246 <LibraryClasses>
247 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
248 }
249 IntelFrameworkModulePkg/Universal/StatusCode/Pei/StatusCodePei.inf
jljustenc1c26692010-01-04 16:17:59 +0000250 MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
jljusten77ba9932009-09-07 20:18:17 +0000251
252 OvmfPkg/PlatformPei/PlatformPei.inf {
253 <LibraryClasses>
254 PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
255 }
jljusten49ba9442009-05-27 21:10:18 +0000256
257[Components.X64]
258 #
259 # DXE Phase modules
260 #
261 MdeModulePkg/Core/Dxe/DxeMain.inf {
262 <LibraryClasses>
263 NULL|IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
264 }
265
266 IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/StatusCodeRuntimeDxe.inf
267 MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
268 <LibraryClasses>
269 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
270 }
271
272 MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
273 MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
274 IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf
xli24e6d3b272009-12-25 06:36:10 +0000275 MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
klu2e471bf12009-12-20 05:35:58 +0000276 MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
jljusten49ba9442009-05-27 21:10:18 +0000277 PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf
eric_tian73cbc582009-12-08 05:31:19 +0000278 UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf
jljusten49ba9442009-05-27 21:10:18 +0000279 UefiCpuPkg/CpuDxe/CpuDxe.inf
280 PcAtChipsetPkg/8254TimerDxe/8254Timer.inf
281 PcAtChipsetPkg/PciHostBridgeDxe/PciHostBridgeDxe.inf
davidhuang4ad90a82009-10-20 03:44:25 +0000282 MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
jljusten49ba9442009-05-27 21:10:18 +0000283 PcAtChipsetPkg/KbcResetDxe/Reset.inf
284 MdeModulePkg/Universal/Metronome/Metronome.inf {
285 <LibraryClasses>
286 TimerLib|OvmfPkg/Library/AcpiTimerLib/AcpiTimerLib.inf
287 }
288
klu278e748b2009-07-07 03:21:07 +0000289 PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf {
jljusten49ba9442009-05-27 21:10:18 +0000290 <LibraryClasses>
291 TimerLib|OvmfPkg/Library/AcpiTimerLib/AcpiTimerLib.inf
292 }
293
jljustenc1c26692010-01-04 16:17:59 +0000294 IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf {
jljusten49ba9442009-05-27 21:10:18 +0000295 <LibraryClasses>
296 TimerLib|OvmfPkg/Library/AcpiTimerLib/AcpiTimerLib.inf
297 }
298
jljusten27f58ea2009-09-26 07:15:51 +0000299 OvmfPkg/EmuVariableFvbRuntimeDxe/Fvb.inf {
300 <LibraryClasses>
301 PlatformFvbLib|OvmfPkg/Library/EmuVariableFvbLib/EmuVariableFvbLib.inf
302 }
303 MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
304 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
jljusten49ba9442009-05-27 21:10:18 +0000305 MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
306 MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
307 MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
308 MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
309 MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
310 MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
311 MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
312 MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
jljusten86fef5b2009-06-30 15:57:29 +0000313 MdeModulePkg/Universal/PrintDxe/PrintDxe.inf
jljusten49ba9442009-05-27 21:10:18 +0000314 MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
315 MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
316 MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
317 MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
318 MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
319 IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/IdeBusDxe.inf
320 PcAtChipsetPkg/Bus/Pci/IdeControllerDxe/IdeControllerDxe.inf
321 MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
322 MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
323
324 OptionRomPkg/CirrusLogic5430Dxe/CirrusLogic5430Dxe.inf
325
326 #
327 # ISA Support
328 #
329 PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf
330 IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf
331 IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/IsaSerialDxe.inf
332 IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf
333 IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/IsaFloppyDxe.inf
334
335 #
336 # ACPI Support
337 #
338 MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
339 MdeModulePkg/Universal/Acpi/AcpiPlatformDxe/AcpiPlatformDxe.inf
340 OvmfPkg/AcpiTables/AcpiTables.inf
341