1 | ## @file
|
---|
2 | # EFI/Framework Open Virtual Machine Firmware (OVMF) platform
|
---|
3 | #
|
---|
4 | # Copyright (c) 2006 - 2021, Intel Corporation. All rights reserved.<BR>
|
---|
5 | # (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
|
---|
6 | # Copyright (c) 2019, Citrix Systems, Inc.
|
---|
7 | # Copyright (c) Microsoft Corporation.
|
---|
8 | #
|
---|
9 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
10 | #
|
---|
11 | ##
|
---|
12 |
|
---|
13 | ################################################################################
|
---|
14 | #
|
---|
15 | # Defines Section - statements that will be processed to create a Makefile.
|
---|
16 | #
|
---|
17 | ################################################################################
|
---|
18 | [Defines]
|
---|
19 | PLATFORM_NAME = Ovmf
|
---|
20 | PLATFORM_GUID = e3aa4fbe-9459-482d-bd40-d3f3b5f89d6e
|
---|
21 | PLATFORM_VERSION = 0.1
|
---|
22 | DSC_SPECIFICATION = 0x00010005
|
---|
23 | OUTPUT_DIRECTORY = Build/OvmfXen
|
---|
24 | SUPPORTED_ARCHITECTURES = X64
|
---|
25 | BUILD_TARGETS = NOOPT|DEBUG|RELEASE
|
---|
26 | SKUID_IDENTIFIER = DEFAULT
|
---|
27 | FLASH_DEFINITION = OvmfPkg/OvmfXen.fdf
|
---|
28 |
|
---|
29 | #
|
---|
30 | # Defines for default states. These can be changed on the command line.
|
---|
31 | # -D FLAG=VALUE
|
---|
32 | #
|
---|
33 | DEFINE SOURCE_DEBUG_ENABLE = FALSE
|
---|
34 |
|
---|
35 | #
|
---|
36 | # Network definition
|
---|
37 | #
|
---|
38 | DEFINE NETWORK_TLS_ENABLE = FALSE
|
---|
39 | DEFINE NETWORK_IP6_ENABLE = FALSE
|
---|
40 | DEFINE NETWORK_HTTP_BOOT_ENABLE = FALSE
|
---|
41 | DEFINE NETWORK_ALLOW_HTTP_CONNECTIONS = TRUE
|
---|
42 | DEFINE NETWORK_ISCSI_ENABLE = TRUE
|
---|
43 |
|
---|
44 | !include NetworkPkg/NetworkDefines.dsc.inc
|
---|
45 |
|
---|
46 | #
|
---|
47 | # Flash size selection. Setting FD_SIZE_IN_KB on the command line directly to
|
---|
48 | # one of the supported values, in place of any of the convenience macros, is
|
---|
49 | # permitted.
|
---|
50 | #
|
---|
51 | !ifdef $(FD_SIZE_1MB)
|
---|
52 | DEFINE FD_SIZE_IN_KB = 1024
|
---|
53 | !else
|
---|
54 | !ifdef $(FD_SIZE_2MB)
|
---|
55 | DEFINE FD_SIZE_IN_KB = 2048
|
---|
56 | !else
|
---|
57 | !ifdef $(FD_SIZE_4MB)
|
---|
58 | DEFINE FD_SIZE_IN_KB = 4096
|
---|
59 | !else
|
---|
60 | DEFINE FD_SIZE_IN_KB = 2048
|
---|
61 | !endif
|
---|
62 | !endif
|
---|
63 | !endif
|
---|
64 |
|
---|
65 | [BuildOptions]
|
---|
66 | GCC:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG
|
---|
67 | INTEL:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
|
---|
68 | MSFT:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
|
---|
69 | !if $(TOOL_CHAIN_TAG) != "XCODE5"
|
---|
70 | GCC:*_*_*_CC_FLAGS = -mno-mmx -mno-sse
|
---|
71 | !endif
|
---|
72 | !if $(SOURCE_DEBUG_ENABLE) == TRUE
|
---|
73 | MSFT:*_*_X64_GENFW_FLAGS = --keepexceptiontable
|
---|
74 | GCC:*_*_X64_GENFW_FLAGS = --keepexceptiontable
|
---|
75 | INTEL:*_*_X64_GENFW_FLAGS = --keepexceptiontable
|
---|
76 | !endif
|
---|
77 | RELEASE_*_*_GENFW_FLAGS = --zero
|
---|
78 |
|
---|
79 | #
|
---|
80 | # Disable deprecated APIs.
|
---|
81 | #
|
---|
82 | MSFT:*_*_*_CC_FLAGS = /D DISABLE_NEW_DEPRECATED_INTERFACES
|
---|
83 | INTEL:*_*_*_CC_FLAGS = /D DISABLE_NEW_DEPRECATED_INTERFACES
|
---|
84 | GCC:*_*_*_CC_FLAGS = -D DISABLE_NEW_DEPRECATED_INTERFACES
|
---|
85 |
|
---|
86 | !include NetworkPkg/NetworkBuildOptions.dsc.inc
|
---|
87 |
|
---|
88 | [BuildOptions.common.EDKII.DXE_RUNTIME_DRIVER]
|
---|
89 | GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000
|
---|
90 | XCODE:*_*_*_DLINK_FLAGS = -seg1addr 0x1000 -segalign 0x1000
|
---|
91 | XCODE:*_*_*_MTOC_FLAGS = -align 0x1000
|
---|
92 | CLANGPDB:*_*_*_DLINK_FLAGS = /ALIGN:4096
|
---|
93 |
|
---|
94 | # Force PE/COFF sections to be aligned at 4KB boundaries to support page level
|
---|
95 | # protection of DXE_SMM_DRIVER/SMM_CORE modules
|
---|
96 | [BuildOptions.common.EDKII.DXE_SMM_DRIVER, BuildOptions.common.EDKII.SMM_CORE]
|
---|
97 | GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000
|
---|
98 | XCODE:*_*_*_DLINK_FLAGS = -seg1addr 0x1000 -segalign 0x1000
|
---|
99 | XCODE:*_*_*_MTOC_FLAGS = -align 0x1000
|
---|
100 | CLANGPDB:*_*_*_DLINK_FLAGS = /ALIGN:4096
|
---|
101 |
|
---|
102 | ################################################################################
|
---|
103 | #
|
---|
104 | # SKU Identification section - list of all SKU IDs supported by this Platform.
|
---|
105 | #
|
---|
106 | ################################################################################
|
---|
107 | [SkuIds]
|
---|
108 | 0|DEFAULT
|
---|
109 |
|
---|
110 | ################################################################################
|
---|
111 | #
|
---|
112 | # Library Class section - list of all Library Classes needed by this Platform.
|
---|
113 | #
|
---|
114 | ################################################################################
|
---|
115 |
|
---|
116 | !include MdePkg/MdeLibs.dsc.inc
|
---|
117 |
|
---|
118 | [LibraryClasses]
|
---|
119 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
---|
120 | TimerLib|MdePkg/Library/SecPeiDxeTimerLibCpu/SecPeiDxeTimerLibCpu.inf
|
---|
121 | ResetSystemLib|OvmfPkg/Library/ResetSystemLib/BaseResetSystemLib.inf
|
---|
122 | PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
|
---|
123 | BaseMemoryLib|MdePkg/Library/BaseMemoryLibRepStr/BaseMemoryLibRepStr.inf
|
---|
124 | BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
|
---|
125 | SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf
|
---|
126 | BmpSupportLib|MdeModulePkg/Library/BaseBmpSupportLib/BaseBmpSupportLib.inf
|
---|
127 | SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
|
---|
128 | CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
|
---|
129 | PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
|
---|
130 | PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
|
---|
131 | CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
|
---|
132 | UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf
|
---|
133 | UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
|
---|
134 | HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
|
---|
135 | SortLib|MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf
|
---|
136 | UefiBootManagerLib|MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
|
---|
137 | BootLogoLib|MdeModulePkg/Library/BootLogoLib/BootLogoLib.inf
|
---|
138 | FileExplorerLib|MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf
|
---|
139 | CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
|
---|
140 | DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
|
---|
141 | DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
---|
142 | PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
|
---|
143 | PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf
|
---|
144 | PciExpressLib|MdePkg/Library/BasePciExpressLib/BasePciExpressLib.inf
|
---|
145 | PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
|
---|
146 | PciSegmentLib|MdePkg/Library/BasePciSegmentLibPci/BasePciSegmentLibPci.inf
|
---|
147 | PciCapLib|OvmfPkg/Library/BasePciCapLib/BasePciCapLib.inf
|
---|
148 | PciCapPciSegmentLib|OvmfPkg/Library/BasePciCapPciSegmentLib/BasePciCapPciSegmentLib.inf
|
---|
149 | PciCapPciIoLib|OvmfPkg/Library/UefiPciCapPciIoLib/UefiPciCapPciIoLib.inf
|
---|
150 | IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsicSev.inf
|
---|
151 | OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
|
---|
152 | SerialPortLib|PcAtChipsetPkg/Library/SerialIoLib/SerialIoLib.inf
|
---|
153 | MtrrLib|UefiCpuPkg/Library/MtrrLib/MtrrLib.inf
|
---|
154 | MicrocodeLib|UefiCpuPkg/Library/MicrocodeLib/MicrocodeLib.inf
|
---|
155 | UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
|
---|
156 | UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
---|
157 | UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
---|
158 | UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
|
---|
159 | UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
|
---|
160 | DevicePathLib|MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLibDevicePathProtocol.inf
|
---|
161 | NvVarsFileLib|OvmfPkg/Library/NvVarsFileLib/NvVarsFileLib.inf
|
---|
162 | FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
|
---|
163 | UefiCpuLib|UefiCpuPkg/Library/BaseUefiCpuLib/BaseUefiCpuLib.inf
|
---|
164 | SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
|
---|
165 | UefiUsbLib|MdePkg/Library/UefiUsbLib/UefiUsbLib.inf
|
---|
166 | SerializeVariablesLib|OvmfPkg/Library/SerializeVariablesLib/SerializeVariablesLib.inf
|
---|
167 | QemuFwCfgLib|OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgDxeLib.inf
|
---|
168 | QemuLoadImageLib|OvmfPkg/Library/GenericQemuLoadImageLib/GenericQemuLoadImageLib.inf
|
---|
169 | MemEncryptSevLib|OvmfPkg/Library/BaseMemEncryptSevLib/DxeMemEncryptSevLib.inf
|
---|
170 | LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxBaseLib.inf
|
---|
171 | CustomizedDisplayLib|MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf
|
---|
172 | FrameBufferBltLib|MdeModulePkg/Library/FrameBufferBltLib/FrameBufferBltLib.inf
|
---|
173 |
|
---|
174 | !if $(SOURCE_DEBUG_ENABLE) == TRUE
|
---|
175 | PeCoffExtraActionLib|SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf
|
---|
176 | DebugCommunicationLib|SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.inf
|
---|
177 | !else
|
---|
178 | PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
|
---|
179 | DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
|
---|
180 | !endif
|
---|
181 |
|
---|
182 | LocalApicLib|UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.inf
|
---|
183 | DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
|
---|
184 |
|
---|
185 | IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf
|
---|
186 | !if $(NETWORK_TLS_ENABLE) == TRUE
|
---|
187 | OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf
|
---|
188 | !else
|
---|
189 | OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLibCrypto.inf
|
---|
190 | !endif
|
---|
191 | RngLib|MdePkg/Library/BaseRngLibTimerLib/BaseRngLibTimerLib.inf
|
---|
192 |
|
---|
193 | AuthVariableLib|MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf
|
---|
194 | VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf
|
---|
195 | VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLib.inf
|
---|
196 | VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/VariablePolicyHelperLib.inf
|
---|
197 |
|
---|
198 |
|
---|
199 | #
|
---|
200 | # Network libraries
|
---|
201 | #
|
---|
202 | !include NetworkPkg/NetworkLibs.dsc.inc
|
---|
203 |
|
---|
204 | !if $(NETWORK_TLS_ENABLE) == TRUE
|
---|
205 | TlsLib|CryptoPkg/Library/TlsLib/TlsLib.inf
|
---|
206 | !endif
|
---|
207 |
|
---|
208 | ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf
|
---|
209 | ShellCEntryLib|ShellPkg/Library/UefiShellCEntryLib/UefiShellCEntryLib.inf
|
---|
210 | S3BootScriptLib|MdeModulePkg/Library/PiDxeS3BootScriptLib/DxeS3BootScriptLib.inf
|
---|
211 | SmbusLib|MdePkg/Library/BaseSmbusLibNull/BaseSmbusLibNull.inf
|
---|
212 | OrderedCollectionLib|MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/BaseOrderedCollectionRedBlackTreeLib.inf
|
---|
213 | XenHypercallLib|OvmfPkg/Library/XenHypercallLib/XenHypercallLib.inf
|
---|
214 | XenPlatformLib|OvmfPkg/Library/XenPlatformLib/XenPlatformLib.inf
|
---|
215 | XenIoMmioLib|OvmfPkg/Library/XenIoMmioLib/XenIoMmioLib.inf
|
---|
216 |
|
---|
217 | Tcg2PhysicalPresenceLib|OvmfPkg/Library/Tcg2PhysicalPresenceLibNull/DxeTcg2PhysicalPresenceLib.inf
|
---|
218 | TpmMeasurementLib|MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf
|
---|
219 | RealTimeClockLib|OvmfPkg/Library/XenRealTimeClockLib/XenRealTimeClockLib.inf
|
---|
220 | TimeBaseLib|EmbeddedPkg/Library/TimeBaseLib/TimeBaseLib.inf
|
---|
221 | !ifdef $(DEBUG_ON_HYPERVISOR_CONSOLE)
|
---|
222 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformRomDebugLibIoPortNocheck.inf
|
---|
223 | !else
|
---|
224 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
|
---|
225 | !endif
|
---|
226 |
|
---|
227 | [LibraryClasses.common]
|
---|
228 | BaseCryptLib|CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
|
---|
229 | VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf
|
---|
230 |
|
---|
231 | [LibraryClasses.common.SEC]
|
---|
232 | QemuFwCfgLib|OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgSecLib.inf
|
---|
233 | !ifndef $(DEBUG_ON_HYPERVISOR_CONSOLE)
|
---|
234 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformRomDebugLibIoPort.inf
|
---|
235 | !endif
|
---|
236 | ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
---|
237 | ExtractGuidedSectionLib|MdePkg/Library/BaseExtractGuidedSectionLib/BaseExtractGuidedSectionLib.inf
|
---|
238 | !if $(SOURCE_DEBUG_ENABLE) == TRUE
|
---|
239 | DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
|
---|
240 | !endif
|
---|
241 | HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
|
---|
242 | PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
|
---|
243 | PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
|
---|
244 | MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
---|
245 | !if $(TOOL_CHAIN_TAG) == "XCODE5"
|
---|
246 | CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/Xcode5SecPeiCpuExceptionHandlerLib.inf
|
---|
247 | !else
|
---|
248 | CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuExceptionHandlerLib.inf
|
---|
249 | !endif
|
---|
250 |
|
---|
251 | [LibraryClasses.common.PEI_CORE]
|
---|
252 | HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
|
---|
253 | PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
|
---|
254 | PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
|
---|
255 | MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
---|
256 | PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
|
---|
257 | ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
---|
258 | OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
|
---|
259 | PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
|
---|
260 | PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
|
---|
261 |
|
---|
262 | [LibraryClasses.common.PEIM]
|
---|
263 | HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
|
---|
264 | PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
|
---|
265 | PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
|
---|
266 | MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
---|
267 | PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
|
---|
268 | ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
---|
269 | OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
|
---|
270 | PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
|
---|
271 | PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
|
---|
272 | ResourcePublicationLib|MdePkg/Library/PeiResourcePublicationLib/PeiResourcePublicationLib.inf
|
---|
273 | ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf
|
---|
274 | !if $(SOURCE_DEBUG_ENABLE) == TRUE
|
---|
275 | DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
|
---|
276 | !endif
|
---|
277 | CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiCpuExceptionHandlerLib.inf
|
---|
278 | MpInitLib|UefiCpuPkg/Library/MpInitLib/PeiMpInitLib.inf
|
---|
279 | QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/PeiQemuFwCfgS3LibFwCfg.inf
|
---|
280 | PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
|
---|
281 | QemuFwCfgLib|OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgPeiLib.inf
|
---|
282 | MemEncryptSevLib|OvmfPkg/Library/BaseMemEncryptSevLib/PeiMemEncryptSevLib.inf
|
---|
283 |
|
---|
284 | [LibraryClasses.common.DXE_CORE]
|
---|
285 | HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
|
---|
286 | DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
|
---|
287 | MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
|
---|
288 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
---|
289 | ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
|
---|
290 | !if $(SOURCE_DEBUG_ENABLE) == TRUE
|
---|
291 | DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
|
---|
292 | !endif
|
---|
293 | CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
|
---|
294 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
---|
295 |
|
---|
296 | [LibraryClasses.common.DXE_RUNTIME_DRIVER]
|
---|
297 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
---|
298 | ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
|
---|
299 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
---|
300 | DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
|
---|
301 | MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
|
---|
302 | ReportStatusCodeLib|MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/RuntimeDxeReportStatusCodeLib.inf
|
---|
303 | UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
|
---|
304 | BaseCryptLib|CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf
|
---|
305 | PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
|
---|
306 | QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/DxeQemuFwCfgS3LibFwCfg.inf
|
---|
307 | VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLibRuntimeDxe.inf
|
---|
308 |
|
---|
309 | [LibraryClasses.common.UEFI_DRIVER]
|
---|
310 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
---|
311 | ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
|
---|
312 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
---|
313 | DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
|
---|
314 | MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
|
---|
315 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
---|
316 | UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
|
---|
317 | PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
|
---|
318 |
|
---|
319 | [LibraryClasses.common.DXE_DRIVER]
|
---|
320 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
---|
321 | ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
|
---|
322 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
---|
323 | MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
|
---|
324 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
---|
325 | UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
|
---|
326 | PlatformBootManagerLib|OvmfPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
|
---|
327 | PlatformBmPrintScLib|OvmfPkg/Library/PlatformBmPrintScLib/PlatformBmPrintScLib.inf
|
---|
328 | QemuBootOrderLib|OvmfPkg/Library/QemuBootOrderLib/QemuBootOrderLib.inf
|
---|
329 | CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
|
---|
330 | LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxDxeLib.inf
|
---|
331 | !if $(SOURCE_DEBUG_ENABLE) == TRUE
|
---|
332 | DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
|
---|
333 | !endif
|
---|
334 | PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
|
---|
335 | MpInitLib|UefiCpuPkg/Library/MpInitLib/DxeMpInitLib.inf
|
---|
336 | QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/DxeQemuFwCfgS3LibFwCfg.inf
|
---|
337 |
|
---|
338 | [LibraryClasses.common.UEFI_APPLICATION]
|
---|
339 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
---|
340 | ResetSystemLib|OvmfPkg/Library/ResetSystemLib/DxeResetSystemLib.inf
|
---|
341 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
---|
342 | MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
|
---|
343 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
---|
344 | PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
|
---|
345 |
|
---|
346 | ################################################################################
|
---|
347 | #
|
---|
348 | # Pcd Section - list of all EDK II PCD Entries defined by this Platform.
|
---|
349 | #
|
---|
350 | ################################################################################
|
---|
351 | [PcdsFeatureFlag]
|
---|
352 | gEfiMdeModulePkgTokenSpaceGuid.PcdHiiOsRuntimeSupport|FALSE
|
---|
353 | gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportUefiDecompress|FALSE
|
---|
354 | gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE
|
---|
355 | gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport|TRUE
|
---|
356 | gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|FALSE
|
---|
357 | gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol|TRUE
|
---|
358 | !ifdef $(CSM_ENABLE)
|
---|
359 | gUefiOvmfPkgTokenSpaceGuid.PcdCsmEnable|TRUE
|
---|
360 | !endif
|
---|
361 |
|
---|
362 | [PcdsFixedAtBuild]
|
---|
363 | gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
|
---|
364 | gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE
|
---|
365 | gEfiMdePkgTokenSpaceGuid.PcdMaximumGuidedExtractHandler|0x10
|
---|
366 | gEfiMdePkgTokenSpaceGuid.PcdMaximumLinkedListLength|0
|
---|
367 | !if ($(FD_SIZE_IN_KB) == 1024) || ($(FD_SIZE_IN_KB) == 2048)
|
---|
368 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x2000
|
---|
369 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxAuthVariableSize|0x2800
|
---|
370 | !if $(NETWORK_TLS_ENABLE) == FALSE
|
---|
371 | # match PcdFlashNvStorageVariableSize purely for convenience
|
---|
372 | gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0xe000
|
---|
373 | !endif
|
---|
374 | !endif
|
---|
375 | !if $(FD_SIZE_IN_KB) == 4096
|
---|
376 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x8400
|
---|
377 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxAuthVariableSize|0x8400
|
---|
378 | !if $(NETWORK_TLS_ENABLE) == FALSE
|
---|
379 | # match PcdFlashNvStorageVariableSize purely for convenience
|
---|
380 | gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0x40000
|
---|
381 | !endif
|
---|
382 | !endif
|
---|
383 | !if $(NETWORK_TLS_ENABLE) == TRUE
|
---|
384 | gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0x80000
|
---|
385 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVolatileVariableSize|0x40000
|
---|
386 | !endif
|
---|
387 |
|
---|
388 | gEfiMdeModulePkgTokenSpaceGuid.PcdVpdBaseAddress|0x0
|
---|
389 | gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE
|
---|
390 | gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory|TRUE
|
---|
391 |
|
---|
392 | gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07
|
---|
393 |
|
---|
394 | # DEBUG_INIT 0x00000001 // Initialization
|
---|
395 | # DEBUG_WARN 0x00000002 // Warnings
|
---|
396 | # DEBUG_LOAD 0x00000004 // Load events
|
---|
397 | # DEBUG_FS 0x00000008 // EFI File system
|
---|
398 | # DEBUG_POOL 0x00000010 // Alloc & Free (pool)
|
---|
399 | # DEBUG_PAGE 0x00000020 // Alloc & Free (page)
|
---|
400 | # DEBUG_INFO 0x00000040 // Informational debug messages
|
---|
401 | # DEBUG_DISPATCH 0x00000080 // PEI/DXE/SMM Dispatchers
|
---|
402 | # DEBUG_VARIABLE 0x00000100 // Variable
|
---|
403 | # DEBUG_BM 0x00000400 // Boot Manager
|
---|
404 | # DEBUG_BLKIO 0x00001000 // BlkIo Driver
|
---|
405 | # DEBUG_NET 0x00004000 // SNP Driver
|
---|
406 | # DEBUG_UNDI 0x00010000 // UNDI Driver
|
---|
407 | # DEBUG_LOADFILE 0x00020000 // LoadFile
|
---|
408 | # DEBUG_EVENT 0x00080000 // Event messages
|
---|
409 | # DEBUG_GCD 0x00100000 // Global Coherency Database changes
|
---|
410 | # DEBUG_CACHE 0x00200000 // Memory range cachability changes
|
---|
411 | # DEBUG_VERBOSE 0x00400000 // Detailed debug messages that may
|
---|
412 | # // significantly impact boot performance
|
---|
413 | # DEBUG_ERROR 0x80000000 // Error
|
---|
414 | gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x8000004F
|
---|
415 |
|
---|
416 | !if $(SOURCE_DEBUG_ENABLE) == TRUE
|
---|
417 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x17
|
---|
418 | !else
|
---|
419 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x2F
|
---|
420 | !endif
|
---|
421 |
|
---|
422 | # This PCD is used to set the base address of the PCI express hierarchy. It
|
---|
423 | # is only consulted when OVMF runs on Q35. In that case it is programmed into
|
---|
424 | # the PCIEXBAR register.
|
---|
425 | #
|
---|
426 | # On Q35 machine types that QEMU intends to support in the long term, QEMU
|
---|
427 | # never lets the RAM below 4 GB exceed 2816 MB.
|
---|
428 | gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress|0xB0000000
|
---|
429 |
|
---|
430 | !if $(SOURCE_DEBUG_ENABLE) == TRUE
|
---|
431 | gEfiSourceLevelDebugPkgTokenSpaceGuid.PcdDebugLoadImageMethod|0x2
|
---|
432 | !endif
|
---|
433 |
|
---|
434 | #
|
---|
435 | # Network Pcds
|
---|
436 | #
|
---|
437 | !include NetworkPkg/NetworkPcds.dsc.inc
|
---|
438 |
|
---|
439 | !ifdef $(DEBUG_ON_HYPERVISOR_CONSOLE)
|
---|
440 | ## Set Xen's debug IO port for PlatformDebugLibIoPort
|
---|
441 | gUefiOvmfPkgTokenSpaceGuid.PcdDebugIoPort|0xe9
|
---|
442 | !endif
|
---|
443 |
|
---|
444 | # IRQs 5, 9, 10, 11 are level-triggered
|
---|
445 | gUefiOvmfPkgTokenSpaceGuid.Pcd8259LegacyModeEdgeLevel|0x0E20
|
---|
446 |
|
---|
447 | # Point to the MdeModulePkg/Application/UiApp/UiApp.inf
|
---|
448 | gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile|{ 0x21, 0xaa, 0x2c, 0x46, 0x14, 0x76, 0x03, 0x45, 0x83, 0x6e, 0x8a, 0xb6, 0xf4, 0x66, 0x23, 0x31 }
|
---|
449 |
|
---|
450 | # We populate DXE IPL tables with 1G pages preferably on Xen
|
---|
451 | gEfiMdeModulePkgTokenSpaceGuid.PcdUse1GPageTable|TRUE
|
---|
452 |
|
---|
453 | ################################################################################
|
---|
454 | #
|
---|
455 | # Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
|
---|
456 | #
|
---|
457 | ################################################################################
|
---|
458 |
|
---|
459 | [PcdsDynamicDefault]
|
---|
460 | gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvStoreReserved|0
|
---|
461 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64|0
|
---|
462 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0
|
---|
463 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0
|
---|
464 | gEfiMdeModulePkgTokenSpaceGuid.PcdPciDisableBusEnumeration|TRUE
|
---|
465 | gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution|800
|
---|
466 | gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution|600
|
---|
467 | gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable|FALSE
|
---|
468 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfHostBridgePciDevId|0
|
---|
469 | gUefiOvmfPkgTokenSpaceGuid.PcdPciIoBase|0x0
|
---|
470 | gUefiOvmfPkgTokenSpaceGuid.PcdPciIoSize|0x0
|
---|
471 | gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio32Base|0x0
|
---|
472 | gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio32Size|0x0
|
---|
473 | gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Base|0x0
|
---|
474 | gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio64Size|0x800000000
|
---|
475 |
|
---|
476 | gEfiMdePkgTokenSpaceGuid.PcdFSBClock|100000000
|
---|
477 | gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|0
|
---|
478 |
|
---|
479 | # Set video resolution for text setup.
|
---|
480 | gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoHorizontalResolution|640
|
---|
481 | gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution|480
|
---|
482 |
|
---|
483 | gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosVersion|0x0208
|
---|
484 | gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosDocRev|0x0
|
---|
485 | gUefiOvmfPkgTokenSpaceGuid.PcdQemuSmbiosValidated|FALSE
|
---|
486 |
|
---|
487 | # Noexec settings for DXE.
|
---|
488 | gEfiMdeModulePkgTokenSpaceGuid.PcdSetNxForStack|FALSE
|
---|
489 |
|
---|
490 | # Set memory encryption mask
|
---|
491 | gEfiMdeModulePkgTokenSpaceGuid.PcdPteMemoryEncryptionAddressOrMask|0x0
|
---|
492 |
|
---|
493 | gEfiSecurityPkgTokenSpaceGuid.PcdOptionRomImageVerificationPolicy|0x00
|
---|
494 |
|
---|
495 | ################################################################################
|
---|
496 | #
|
---|
497 | # Components Section - list of all EDK II Modules needed by this Platform.
|
---|
498 | #
|
---|
499 | ################################################################################
|
---|
500 | [Components]
|
---|
501 | OvmfPkg/XenResetVector/XenResetVector.inf
|
---|
502 |
|
---|
503 | #
|
---|
504 | # SEC Phase modules
|
---|
505 | #
|
---|
506 | OvmfPkg/Sec/SecMain.inf {
|
---|
507 | <LibraryClasses>
|
---|
508 | NULL|MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
|
---|
509 | }
|
---|
510 |
|
---|
511 | #
|
---|
512 | # PEI Phase modules
|
---|
513 | #
|
---|
514 | MdeModulePkg/Core/Pei/PeiMain.inf
|
---|
515 | MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
|
---|
516 | <LibraryClasses>
|
---|
517 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
---|
518 | }
|
---|
519 | MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf {
|
---|
520 | <LibraryClasses>
|
---|
521 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
---|
522 | }
|
---|
523 | MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf {
|
---|
524 | <LibraryClasses>
|
---|
525 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
---|
526 | }
|
---|
527 | MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
|
---|
528 |
|
---|
529 | OvmfPkg/XenPlatformPei/XenPlatformPei.inf
|
---|
530 | UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf
|
---|
531 | UefiCpuPkg/CpuMpPei/CpuMpPei.inf
|
---|
532 |
|
---|
533 | #
|
---|
534 | # DXE Phase modules
|
---|
535 | #
|
---|
536 | MdeModulePkg/Core/Dxe/DxeMain.inf {
|
---|
537 | <LibraryClasses>
|
---|
538 | NULL|MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
|
---|
539 | DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
---|
540 | }
|
---|
541 |
|
---|
542 | MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf
|
---|
543 | MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf
|
---|
544 | MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
|
---|
545 | <LibraryClasses>
|
---|
546 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
---|
547 | }
|
---|
548 |
|
---|
549 | MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
|
---|
550 |
|
---|
551 | MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
|
---|
552 |
|
---|
553 | MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
|
---|
554 | OvmfPkg/XenTimerDxe/XenTimerDxe.inf
|
---|
555 | UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf
|
---|
556 | UefiCpuPkg/CpuDxe/CpuDxe.inf
|
---|
557 | OvmfPkg/IncompatiblePciDeviceSupportDxe/IncompatiblePciDeviceSupport.inf
|
---|
558 | OvmfPkg/PciHotPlugInitDxe/PciHotPlugInit.inf
|
---|
559 | MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostBridgeDxe.inf {
|
---|
560 | <LibraryClasses>
|
---|
561 | PciHostBridgeLib|OvmfPkg/Library/PciHostBridgeLib/PciHostBridgeLib.inf
|
---|
562 | PciHostBridgeUtilityLib|OvmfPkg/Library/PciHostBridgeUtilityLib/PciHostBridgeUtilityLib.inf
|
---|
563 | NULL|OvmfPkg/Library/PlatformHasIoMmuLib/PlatformHasIoMmuLib.inf
|
---|
564 | }
|
---|
565 | MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf {
|
---|
566 | <LibraryClasses>
|
---|
567 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
---|
568 | }
|
---|
569 | MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf
|
---|
570 | MdeModulePkg/Universal/Metronome/Metronome.inf
|
---|
571 | EmbeddedPkg/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf
|
---|
572 | MdeModulePkg/Universal/DriverHealthManagerDxe/DriverHealthManagerDxe.inf
|
---|
573 | MdeModulePkg/Universal/BdsDxe/BdsDxe.inf {
|
---|
574 | <LibraryClasses>
|
---|
575 | !ifdef $(CSM_ENABLE)
|
---|
576 | NULL|OvmfPkg/Csm/CsmSupportLib/CsmSupportLib.inf
|
---|
577 | NULL|OvmfPkg/Csm/LegacyBootManagerLib/LegacyBootManagerLib.inf
|
---|
578 | !endif
|
---|
579 | }
|
---|
580 | MdeModulePkg/Logo/LogoDxe.inf
|
---|
581 | MdeModulePkg/Application/UiApp/UiApp.inf {
|
---|
582 | <LibraryClasses>
|
---|
583 | NULL|MdeModulePkg/Library/DeviceManagerUiLib/DeviceManagerUiLib.inf
|
---|
584 | NULL|MdeModulePkg/Library/BootManagerUiLib/BootManagerUiLib.inf
|
---|
585 | NULL|MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerUiLib.inf
|
---|
586 | !ifdef $(CSM_ENABLE)
|
---|
587 | NULL|OvmfPkg/Csm/LegacyBootManagerLib/LegacyBootManagerLib.inf
|
---|
588 | NULL|OvmfPkg/Csm/LegacyBootMaintUiLib/LegacyBootMaintUiLib.inf
|
---|
589 | !endif
|
---|
590 | }
|
---|
591 | OvmfPkg/XenIoPvhDxe/XenIoPvhDxe.inf
|
---|
592 | OvmfPkg/XenIoPciDxe/XenIoPciDxe.inf
|
---|
593 | OvmfPkg/XenBusDxe/XenBusDxe.inf
|
---|
594 | OvmfPkg/XenPvBlkDxe/XenPvBlkDxe.inf
|
---|
595 | MdeModulePkg/Universal/SerialDxe/SerialDxe.inf {
|
---|
596 | <LibraryClasses>
|
---|
597 | SerialPortLib|OvmfPkg/Library/XenConsoleSerialPortLib/XenConsoleSerialPortLib.inf
|
---|
598 | }
|
---|
599 | MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
|
---|
600 | MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
|
---|
601 | MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
|
---|
602 | MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
|
---|
603 | MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
|
---|
604 | MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf {
|
---|
605 | <LibraryClasses>
|
---|
606 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
---|
607 | }
|
---|
608 | MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
|
---|
609 | MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf {
|
---|
610 | <LibraryClasses>
|
---|
611 | DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
---|
612 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
---|
613 | }
|
---|
614 | MdeModulePkg/Universal/PrintDxe/PrintDxe.inf
|
---|
615 | MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
|
---|
616 | MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
|
---|
617 | MdeModulePkg/Universal/Disk/RamDiskDxe/RamDiskDxe.inf
|
---|
618 | MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
|
---|
619 | FatPkg/EnhancedFatDxe/Fat.inf
|
---|
620 | MdeModulePkg/Universal/Disk/UdfDxe/UdfDxe.inf
|
---|
621 | MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
|
---|
622 | MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
|
---|
623 | OvmfPkg/SataControllerDxe/SataControllerDxe.inf
|
---|
624 | MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf
|
---|
625 | MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf
|
---|
626 | MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf
|
---|
627 | MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
|
---|
628 | MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
|
---|
629 | MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
|
---|
630 | MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
|
---|
631 |
|
---|
632 | OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf
|
---|
633 | OvmfPkg/QemuRamfbDxe/QemuRamfbDxe.inf
|
---|
634 |
|
---|
635 | #
|
---|
636 | # ISA Support
|
---|
637 | #
|
---|
638 | OvmfPkg/SioBusDxe/SioBusDxe.inf
|
---|
639 | MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
|
---|
640 | MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
---|
641 |
|
---|
642 | #
|
---|
643 | # SMBIOS Support
|
---|
644 | #
|
---|
645 | MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf {
|
---|
646 | <LibraryClasses>
|
---|
647 | NULL|OvmfPkg/Library/SmbiosVersionLib/DetectSmbiosVersionLib.inf
|
---|
648 | }
|
---|
649 | OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.inf
|
---|
650 |
|
---|
651 | #
|
---|
652 | # ACPI Support
|
---|
653 | #
|
---|
654 | MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
|
---|
655 | OvmfPkg/AcpiPlatformDxe/AcpiPlatformDxe.inf
|
---|
656 | OvmfPkg/AcpiTables/AcpiTables.inf
|
---|
657 | MdeModulePkg/Universal/Acpi/S3SaveStateDxe/S3SaveStateDxe.inf
|
---|
658 | MdeModulePkg/Universal/Acpi/BootScriptExecutorDxe/BootScriptExecutorDxe.inf
|
---|
659 | MdeModulePkg/Universal/Acpi/BootGraphicsResourceTableDxe/BootGraphicsResourceTableDxe.inf
|
---|
660 |
|
---|
661 | #
|
---|
662 | # Network Support
|
---|
663 | #
|
---|
664 | !include NetworkPkg/NetworkComponents.dsc.inc
|
---|
665 |
|
---|
666 | !if $(NETWORK_TLS_ENABLE) == TRUE
|
---|
667 | NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigDxe.inf {
|
---|
668 | <LibraryClasses>
|
---|
669 | NULL|OvmfPkg/Library/TlsAuthConfigLib/TlsAuthConfigLib.inf
|
---|
670 | }
|
---|
671 | !endif
|
---|
672 |
|
---|
673 | #
|
---|
674 | # Usb Support
|
---|
675 | #
|
---|
676 | MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf
|
---|
677 | MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf
|
---|
678 | MdeModulePkg/Bus/Pci/XhciDxe/XhciDxe.inf
|
---|
679 | MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf
|
---|
680 | MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf
|
---|
681 | MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
|
---|
682 |
|
---|
683 | !ifdef $(CSM_ENABLE)
|
---|
684 | OvmfPkg/Csm/BiosThunk/VideoDxe/VideoDxe.inf {
|
---|
685 | <LibraryClasses>
|
---|
686 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
---|
687 | }
|
---|
688 | OvmfPkg/Csm/LegacyBiosDxe/LegacyBiosDxe.inf
|
---|
689 | OvmfPkg/Csm/Csm16/Csm16.inf
|
---|
690 | !endif
|
---|
691 |
|
---|
692 | !if $(TOOL_CHAIN_TAG) != "XCODE5"
|
---|
693 | ShellPkg/DynamicCommand/TftpDynamicCommand/TftpDynamicCommand.inf {
|
---|
694 | <PcdsFixedAtBuild>
|
---|
695 | gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
|
---|
696 | }
|
---|
697 | ShellPkg/DynamicCommand/HttpDynamicCommand/HttpDynamicCommand.inf {
|
---|
698 | <PcdsFixedAtBuild>
|
---|
699 | gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
|
---|
700 | }
|
---|
701 | OvmfPkg/LinuxInitrdDynamicShellCommand/LinuxInitrdDynamicShellCommand.inf {
|
---|
702 | <PcdsFixedAtBuild>
|
---|
703 | gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
|
---|
704 | }
|
---|
705 | !endif
|
---|
706 | ShellPkg/Application/Shell/Shell.inf {
|
---|
707 | <LibraryClasses>
|
---|
708 | ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
|
---|
709 | NULL|ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf
|
---|
710 | NULL|ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf
|
---|
711 | NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
|
---|
712 | NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
|
---|
713 | NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
|
---|
714 | NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
|
---|
715 | NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
|
---|
716 | !if $(NETWORK_IP6_ENABLE) == TRUE
|
---|
717 | NULL|ShellPkg/Library/UefiShellNetwork2CommandsLib/UefiShellNetwork2CommandsLib.inf
|
---|
718 | !endif
|
---|
719 | HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
|
---|
720 | PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
|
---|
721 | BcfgCommandLib|ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.inf
|
---|
722 |
|
---|
723 | <PcdsFixedAtBuild>
|
---|
724 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xFF
|
---|
725 | gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
|
---|
726 | gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|8000
|
---|
727 | }
|
---|
728 |
|
---|
729 | OvmfPkg/PlatformDxe/Platform.inf
|
---|
730 | OvmfPkg/AmdSevDxe/AmdSevDxe.inf
|
---|
731 | OvmfPkg/IoMmuDxe/IoMmuDxe.inf
|
---|
732 |
|
---|
733 | #
|
---|
734 | # Variable driver stack (non-SMM)
|
---|
735 | #
|
---|
736 | OvmfPkg/QemuFlashFvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf
|
---|
737 | OvmfPkg/EmuVariableFvbRuntimeDxe/Fvb.inf {
|
---|
738 | <LibraryClasses>
|
---|
739 | PlatformFvbLib|OvmfPkg/Library/EmuVariableFvbLib/EmuVariableFvbLib.inf
|
---|
740 | }
|
---|
741 | MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
|
---|
742 | MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf {
|
---|
743 | <LibraryClasses>
|
---|
744 | NULL|MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf
|
---|
745 | }
|
---|