Commit | Line | Data |
---|---|---|
7b202cb0 | 1 | ## @file\r |
49ba9447 | 2 | # EFI/Framework Open Virtual Machine Firmware (OVMF) platform\r |
3 | #\r | |
4a64cbda | 4 | # Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r |
a6d594c5 | 5 | # (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>\r |
49ba9447 | 6 | #\r |
56d7640a | 7 | # This program and the accompanying materials\r |
49ba9447 | 8 | # are licensed and made available under the terms and conditions of the BSD License\r |
9 | # which accompanies this distribution. The full text of the license may be found at\r | |
10 | # http://opensource.org/licenses/bsd-license.php\r | |
11 | #\r | |
12 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
13 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
14 | #\r | |
7b202cb0 | 15 | ##\r |
49ba9447 | 16 | \r |
17 | ################################################################################\r | |
18 | #\r | |
19 | # Defines Section - statements that will be processed to create a Makefile.\r | |
20 | #\r | |
21 | ################################################################################\r | |
22 | [Defines]\r | |
23 | PLATFORM_NAME = Ovmf\r | |
24 | PLATFORM_GUID = 5a9e7754-d81b-49ea-85ad-69eaa7b1539b\r | |
25 | PLATFORM_VERSION = 0.1\r | |
713b7b5e | 26 | DSC_SPECIFICATION = 0x00010005\r |
49ba9447 | 27 | OUTPUT_DIRECTORY = Build/OvmfIa32\r |
28 | SUPPORTED_ARCHITECTURES = IA32\r | |
27214228 | 29 | BUILD_TARGETS = NOOPT|DEBUG|RELEASE\r |
49ba9447 | 30 | SKUID_IDENTIFIER = DEFAULT\r |
7416f4eb | 31 | FLASH_DEFINITION = OvmfPkg/OvmfPkgIa32.fdf\r |
49ba9447 | 32 | \r |
e05061c5 | 33 | #\r |
34 | # Defines for default states. These can be changed on the command line.\r | |
35 | # -D FLAG=VALUE\r | |
36 | #\r | |
37 | DEFINE SECURE_BOOT_ENABLE = FALSE\r | |
36c6413f | 38 | DEFINE NETWORK_IP6_ENABLE = FALSE\r |
ab44a6e8 | 39 | DEFINE HTTP_BOOT_ENABLE = FALSE\r |
1f695483 | 40 | DEFINE SMM_REQUIRE = FALSE\r |
315d9d08 | 41 | DEFINE TLS_ENABLE = FALSE\r |
6cf1880f | 42 | DEFINE TPM2_ENABLE = FALSE\r |
e05061c5 | 43 | \r |
21027073 LE |
44 | #\r |
45 | # Flash size selection. Setting FD_SIZE_IN_KB on the command line directly to\r | |
46 | # one of the supported values, in place of any of the convenience macros, is\r | |
47 | # permitted.\r | |
48 | #\r | |
49 | !ifdef $(FD_SIZE_1MB)\r | |
50 | DEFINE FD_SIZE_IN_KB = 1024\r | |
51 | !else\r | |
52 | !ifdef $(FD_SIZE_2MB)\r | |
53 | DEFINE FD_SIZE_IN_KB = 2048\r | |
b24fca05 LE |
54 | !else\r |
55 | !ifdef $(FD_SIZE_4MB)\r | |
56 | DEFINE FD_SIZE_IN_KB = 4096\r | |
21027073 | 57 | !else\r |
1c47fcd4 | 58 | DEFINE FD_SIZE_IN_KB = 4096\r |
21027073 LE |
59 | !endif\r |
60 | !endif\r | |
b24fca05 | 61 | !endif\r |
21027073 | 62 | \r |
0bc7e56d | 63 | [BuildOptions]\r |
0b5a5022 | 64 | GCC:*_UNIXGCC_*_CC_FLAGS = -DMDEPKG_NDEBUG\r |
152d9a6b | 65 | GCC:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG\r |
66 | INTEL:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG\r | |
67 | MSFT:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG\r | |
4a64cbda | 68 | !if $(TOOL_CHAIN_TAG) != "XCODE5"\r |
4a8266f5 | 69 | GCC:*_*_*_CC_FLAGS = -mno-mmx -mno-sse\r |
4a64cbda | 70 | !endif\r |
0bc7e56d | 71 | \r |
b78736bd LE |
72 | #\r |
73 | # Disable deprecated APIs.\r | |
74 | #\r | |
75 | MSFT:*_*_*_CC_FLAGS = /D DISABLE_NEW_DEPRECATED_INTERFACES\r | |
76 | INTEL:*_*_*_CC_FLAGS = /D DISABLE_NEW_DEPRECATED_INTERFACES\r | |
77 | GCC:*_*_*_CC_FLAGS = -D DISABLE_NEW_DEPRECATED_INTERFACES\r | |
78 | \r | |
ddd89cd5 AB |
79 | [BuildOptions.common.EDKII.DXE_RUNTIME_DRIVER]\r |
80 | GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000\r | |
01e95975 | 81 | XCODE:*_*_*_DLINK_FLAGS =\r |
ddd89cd5 | 82 | \r |
2f790bcb JY |
83 | # Force PE/COFF sections to be aligned at 4KB boundaries to support page level\r |
84 | # protection of DXE_SMM_DRIVER/SMM_CORE modules\r | |
85 | [BuildOptions.common.EDKII.DXE_SMM_DRIVER, BuildOptions.common.EDKII.SMM_CORE]\r | |
86 | GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000\r | |
01e95975 | 87 | XCODE:*_*_*_DLINK_FLAGS =\r |
2f790bcb | 88 | \r |
49ba9447 | 89 | ################################################################################\r |
90 | #\r | |
91 | # SKU Identification section - list of all SKU IDs supported by this Platform.\r | |
92 | #\r | |
93 | ################################################################################\r | |
94 | [SkuIds]\r | |
95 | 0|DEFAULT\r | |
96 | \r | |
97 | ################################################################################\r | |
98 | #\r | |
99 | # Library Class section - list of all Library Classes needed by this Platform.\r | |
100 | #\r | |
101 | ################################################################################\r | |
7b202cb0 | 102 | [LibraryClasses]\r |
49ba9447 | 103 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf\r |
170ef2d9 | 104 | TimerLib|OvmfPkg/Library/AcpiTimerLib/BaseAcpiTimerLib.inf\r |
49ba9447 | 105 | PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf\r |
4a8266f5 | 106 | BaseMemoryLib|MdePkg/Library/BaseMemoryLibRepStr/BaseMemoryLibRepStr.inf\r |
49ba9447 | 107 | BaseLib|MdePkg/Library/BaseLib/BaseLib.inf\r |
7fc21c29 MK |
108 | SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf\r |
109 | BmpSupportLib|MdeModulePkg/Library/BaseBmpSupportLib/BaseBmpSupportLib.inf\r | |
49ba9447 | 110 | SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf\r |
111 | CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf\r | |
112 | PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf\r | |
113 | PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf\r | |
49ba9447 | 114 | CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf\r |
115 | UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf\r | |
116 | UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf\r | |
117 | HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf\r | |
79c098b6 | 118 | SortLib|MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf\r |
79c098b6 | 119 | UefiBootManagerLib|MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf\r |
a3cd5cd5 | 120 | BootLogoLib|MdeModulePkg/Library/BootLogoLib/BootLogoLib.inf\r |
79c098b6 | 121 | FileExplorerLib|MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf\r |
49ba9447 | 122 | CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf\r |
123 | DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf\r | |
cd455669 | 124 | DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf\r |
49ba9447 | 125 | PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf\r |
126 | PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf\r | |
c47ed6fc | 127 | PciExpressLib|MdePkg/Library/BasePciExpressLib/BasePciExpressLib.inf\r |
49ba9447 | 128 | PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf\r |
75f45331 | 129 | PciSegmentLib|MdePkg/Library/BasePciSegmentLibPci/BasePciSegmentLibPci.inf\r |
97353a9c | 130 | IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsicSev.inf\r |
1630c6df | 131 | OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf\r |
49ba9447 | 132 | SerialPortLib|PcAtChipsetPkg/Library/SerialIoLib/SerialIoLib.inf\r |
133 | MtrrLib|UefiCpuPkg/Library/MtrrLib/MtrrLib.inf\r | |
86fef5b4 | 134 | UefiLib|MdePkg/Library/UefiLib/UefiLib.inf\r |
135 | UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf\r | |
136 | UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf\r | |
137 | UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf\r | |
138 | UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf\r | |
5c3481b0 | 139 | DevicePathLib|MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLibDevicePathProtocol.inf\r |
14b21de9 | 140 | NvVarsFileLib|OvmfPkg/Library/NvVarsFileLib/NvVarsFileLib.inf\r |
ae591c14 | 141 | FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf\r |
284af948 | 142 | UefiCpuLib|UefiCpuPkg/Library/BaseUefiCpuLib/BaseUefiCpuLib.inf\r |
8273af4e | 143 | SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf\r |
7416f4eb | 144 | NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf\r |
145 | IpIoLib|MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf\r | |
146 | UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf\r | |
147 | DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf\r | |
689562cd | 148 | UefiUsbLib|MdePkg/Library/UefiUsbLib/UefiUsbLib.inf\r |
b043ebc2 | 149 | SerializeVariablesLib|OvmfPkg/Library/SerializeVariablesLib/SerializeVariablesLib.inf\r |
fee47a26 | 150 | QemuFwCfgLib|OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgDxeLib.inf\r |
263559b8 | 151 | VirtioLib|OvmfPkg/Library/VirtioLib/VirtioLib.inf\r |
3c0a051f | 152 | LoadLinuxLib|OvmfPkg/Library/LoadLinuxLib/LoadLinuxLib.inf\r |
a1f22614 | 153 | MemEncryptSevLib|OvmfPkg/Library/BaseMemEncryptSevLib/BaseMemEncryptSevLib.inf\r |
67d86594 | 154 | !if $(SMM_REQUIRE) == FALSE\r |
6a7cba79 | 155 | LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxBaseLib.inf\r |
67d86594 | 156 | !endif\r |
56af21cb | 157 | CustomizedDisplayLib|MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf\r |
ead94b1f | 158 | FrameBufferBltLib|MdeModulePkg/Library/FrameBufferBltLib/FrameBufferBltLib.inf\r |
152d9a6b | 159 | \r |
c6efcc2a | 160 | !ifdef $(SOURCE_DEBUG_ENABLE)\r |
161 | PeCoffExtraActionLib|SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf\r | |
162 | DebugCommunicationLib|SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.inf\r | |
163 | !else\r | |
42a83e80 | 164 | PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf\r |
165 | DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf\r | |
c6efcc2a | 166 | !endif\r |
152d9a6b | 167 | \r |
7ca30a6a | 168 | ResetSystemLib|OvmfPkg/Library/ResetSystemLib/ResetSystemLib.inf\r |
decb365b | 169 | LocalApicLib|UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.inf\r |
8cee3de7 | 170 | DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf\r |
171 | \r | |
8cee3de7 | 172 | IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf\r |
df453e1b | 173 | !if $(TLS_ENABLE) == TRUE\r |
8cee3de7 | 174 | OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf\r |
df453e1b LE |
175 | !else\r |
176 | OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLibCrypto.inf\r | |
177 | !endif\r | |
6d0f8941 GL |
178 | \r |
179 | !if $(SECURE_BOOT_ENABLE) == TRUE\r | |
180 | PlatformSecureLib|OvmfPkg/Library/PlatformSecureLib/PlatformSecureLib.inf\r | |
0d28d286 | 181 | TpmMeasurementLib|SecurityPkg/Library/DxeTpmMeasurementLib/DxeTpmMeasurementLib.inf\r |
285542eb | 182 | AuthVariableLib|SecurityPkg/Library/AuthVariableLib/AuthVariableLib.inf\r |
285542eb SZ |
183 | !else\r |
184 | TpmMeasurementLib|MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf\r | |
185 | AuthVariableLib|MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf\r | |
8cee3de7 | 186 | !endif\r |
68ef1ad7 | 187 | VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf\r |
8cee3de7 | 188 | \r |
32e22f20 GL |
189 | !if $(NETWORK_IP6_ENABLE) == TRUE\r |
190 | TcpIoLib|MdeModulePkg/Library/DxeTcpIoLib/DxeTcpIoLib.inf\r | |
191 | !endif\r | |
192 | \r | |
ab44a6e8 GCPL |
193 | !if $(HTTP_BOOT_ENABLE) == TRUE\r |
194 | HttpLib|MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.inf\r | |
195 | !endif\r | |
196 | \r | |
315d9d08 GL |
197 | !if $(TLS_ENABLE) == TRUE\r |
198 | TlsLib|CryptoPkg/Library/TlsLib/TlsLib.inf\r | |
199 | !endif\r | |
200 | \r | |
984ba6a4 | 201 | ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf\r |
b017b1b2 LE |
202 | S3BootScriptLib|MdeModulePkg/Library/PiDxeS3BootScriptLib/DxeS3BootScriptLib.inf\r |
203 | SmbusLib|MdePkg/Library/BaseSmbusLibNull/BaseSmbusLibNull.inf\r | |
48cc4d0c | 204 | OrderedCollectionLib|MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/BaseOrderedCollectionRedBlackTreeLib.inf\r |
df040c00 | 205 | XenHypercallLib|OvmfPkg/Library/XenHypercallLib/XenHypercallLib.inf\r |
b017b1b2 | 206 | \r |
6cf1880f MAL |
207 | !if $(TPM2_ENABLE) == TRUE\r |
208 | Tpm2CommandLib|SecurityPkg/Library/Tpm2CommandLib/Tpm2CommandLib.inf\r | |
0c0a50d6 MAL |
209 | Tcg2PhysicalPresenceLib|SecurityPkg/Library/DxeTcg2PhysicalPresenceLib/DxeTcg2PhysicalPresenceLib.inf\r |
210 | Tcg2PpVendorLib|SecurityPkg/Library/Tcg2PpVendorLibNull/Tcg2PpVendorLibNull.inf\r | |
6cf1880f MAL |
211 | !endif\r |
212 | \r | |
8cee3de7 | 213 | [LibraryClasses.common]\r |
8cee3de7 | 214 | BaseCryptLib|CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf\r |
152d9a6b | 215 | \r |
49ba9447 | 216 | [LibraryClasses.common.SEC]\r |
170ef2d9 | 217 | TimerLib|OvmfPkg/Library/AcpiTimerLib/BaseRomAcpiTimerLib.inf\r |
c90decb9 | 218 | QemuFwCfgLib|OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgSecLib.inf\r |
b90aefa9 | 219 | !ifdef $(DEBUG_ON_SERIAL_PORT)\r |
49ba9447 | 220 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf\r |
b90aefa9 | 221 | !else\r |
c9eb56e5 | 222 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformRomDebugLibIoPort.inf\r |
b90aefa9 | 223 | !endif\r |
abec2e51 | 224 | ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf\r |
fcd7e677 | 225 | ExtractGuidedSectionLib|MdePkg/Library/BaseExtractGuidedSectionLib/BaseExtractGuidedSectionLib.inf\r |
c6efcc2a | 226 | !ifdef $(SOURCE_DEBUG_ENABLE)\r |
227 | DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf\r | |
228 | !endif\r | |
42a83e80 | 229 | HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf\r |
230 | PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf\r | |
231 | PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf\r | |
232 | MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf\r | |
85a32c71 | 233 | CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuExceptionHandlerLib.inf\r |
152d9a6b | 234 | \r |
49ba9447 | 235 | [LibraryClasses.common.PEI_CORE]\r |
49ba9447 | 236 | HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf\r |
237 | PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf\r | |
238 | PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf\r | |
239 | MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf\r | |
240 | PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf\r | |
abec2e51 | 241 | ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf\r |
1630c6df | 242 | OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf\r |
49ba9447 | 243 | PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf\r |
b90aefa9 | 244 | !ifdef $(DEBUG_ON_SERIAL_PORT)\r |
49ba9447 | 245 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf\r |
b90aefa9 | 246 | !else\r |
247 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf\r | |
248 | !endif\r | |
49ba9447 | 249 | PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf\r |
250 | \r | |
251 | [LibraryClasses.common.PEIM]\r | |
49ba9447 | 252 | HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf\r |
253 | PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf\r | |
254 | PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf\r | |
255 | MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf\r | |
256 | PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf\r | |
abec2e51 | 257 | ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf\r |
1630c6df | 258 | OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf\r |
49ba9447 | 259 | PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf\r |
b90aefa9 | 260 | !ifdef $(DEBUG_ON_SERIAL_PORT)\r |
49ba9447 | 261 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf\r |
b90aefa9 | 262 | !else\r |
263 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf\r | |
264 | !endif\r | |
49ba9447 | 265 | PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf\r |
266 | PeiResourcePublicationLib|MdePkg/Library/PeiResourcePublicationLib/PeiResourcePublicationLib.inf\r | |
267 | ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf\r | |
c6efcc2a | 268 | !ifdef $(SOURCE_DEBUG_ENABLE)\r |
269 | DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf\r | |
270 | !endif\r | |
f0e6a56a | 271 | CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiCpuExceptionHandlerLib.inf\r |
f4c59f42 | 272 | MpInitLib|UefiCpuPkg/Library/MpInitLib/PeiMpInitLib.inf\r |
b7f2e82c | 273 | QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/PeiQemuFwCfgS3LibFwCfg.inf\r |
639c7dd8 | 274 | PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf\r |
fee47a26 | 275 | QemuFwCfgLib|OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgPeiLib.inf\r |
49ba9447 | 276 | \r |
6cf1880f | 277 | !if $(TPM2_ENABLE) == TRUE\r |
4672a489 | 278 | BaseCryptLib|CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf\r |
6cf1880f MAL |
279 | Tpm2DeviceLib|SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.inf\r |
280 | !endif\r | |
281 | \r | |
49ba9447 | 282 | [LibraryClasses.common.DXE_CORE]\r |
49ba9447 | 283 | HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf\r |
284 | DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf\r | |
285 | MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf\r | |
abec2e51 | 286 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf\r |
b90aefa9 | 287 | !ifdef $(DEBUG_ON_SERIAL_PORT)\r |
49ba9447 | 288 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf\r |
b90aefa9 | 289 | !else\r |
290 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf\r | |
291 | !endif\r | |
49ba9447 | 292 | ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf\r |
c6efcc2a | 293 | !ifdef $(SOURCE_DEBUG_ENABLE)\r |
294 | DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf\r | |
295 | !endif\r | |
85a32c71 | 296 | CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf\r |
c075d250 | 297 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf\r |
49ba9447 | 298 | \r |
299 | [LibraryClasses.common.DXE_RUNTIME_DRIVER]\r | |
988e5986 | 300 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf\r |
170ef2d9 | 301 | TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf\r |
49ba9447 | 302 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf\r |
303 | DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf\r | |
304 | MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf\r | |
abec2e51 | 305 | ReportStatusCodeLib|MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/RuntimeDxeReportStatusCodeLib.inf\r |
b90aefa9 | 306 | !ifdef $(DEBUG_ON_SERIAL_PORT)\r |
49ba9447 | 307 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf\r |
b90aefa9 | 308 | !else\r |
309 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf\r | |
310 | !endif\r | |
49ba9447 | 311 | UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf\r |
8cee3de7 | 312 | BaseCryptLib|CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf\r |
c47ed6fc | 313 | PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf\r |
b7f2e82c | 314 | QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/DxeQemuFwCfgS3LibFwCfg.inf\r |
49ba9447 | 315 | \r |
316 | [LibraryClasses.common.UEFI_DRIVER]\r | |
988e5986 GS |
317 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf\r |
318 | TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf\r | |
49ba9447 | 319 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf\r |
320 | DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf\r | |
321 | MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf\r | |
abec2e51 | 322 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf\r |
b90aefa9 | 323 | !ifdef $(DEBUG_ON_SERIAL_PORT)\r |
49ba9447 | 324 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf\r |
b90aefa9 | 325 | !else\r |
326 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf\r | |
327 | !endif\r | |
49ba9447 | 328 | UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf\r |
c47ed6fc | 329 | PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf\r |
49ba9447 | 330 | \r |
331 | [LibraryClasses.common.DXE_DRIVER]\r | |
988e5986 | 332 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf\r |
170ef2d9 | 333 | TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf\r |
49ba9447 | 334 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf\r |
49ba9447 | 335 | MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf\r |
abec2e51 | 336 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf\r |
49ba9447 | 337 | UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf\r |
b90aefa9 | 338 | !ifdef $(DEBUG_ON_SERIAL_PORT)\r |
49ba9447 | 339 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf\r |
b90aefa9 | 340 | !else\r |
341 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf\r | |
342 | !endif\r | |
49ba9447 | 343 | NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf\r |
344 | IpIoLib|MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf\r | |
345 | UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf\r | |
346 | DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf\r | |
79c098b6 | 347 | PlatformBootManagerLib|OvmfPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf\r |
d85c5e31 | 348 | QemuBootOrderLib|OvmfPkg/Library/QemuBootOrderLib/QemuBootOrderLib.inf\r |
85a32c71 | 349 | CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf\r |
67d86594 LE |
350 | !if $(SMM_REQUIRE) == TRUE\r |
351 | LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxDxeLib.inf\r | |
352 | !else\r | |
6a7cba79 | 353 | LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxDxeLib.inf\r |
67d86594 | 354 | !endif\r |
34511266 JJ |
355 | !ifdef $(SOURCE_DEBUG_ENABLE)\r |
356 | DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf\r | |
357 | !endif\r | |
c47ed6fc | 358 | PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf\r |
f4c59f42 | 359 | MpInitLib|UefiCpuPkg/Library/MpInitLib/DxeMpInitLib.inf\r |
b7f2e82c | 360 | QemuFwCfgS3Lib|OvmfPkg/Library/QemuFwCfgS3Lib/DxeQemuFwCfgS3LibFwCfg.inf\r |
0c0a50d6 MAL |
361 | !if $(TPM2_ENABLE) == TRUE\r |
362 | Tpm2DeviceLib|SecurityPkg/Library/Tpm2DeviceLibTcg2/Tpm2DeviceLibTcg2.inf\r | |
363 | !endif\r | |
49ba9447 | 364 | \r |
86fef5b4 | 365 | [LibraryClasses.common.UEFI_APPLICATION]\r |
988e5986 GS |
366 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf\r |
367 | TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf\r | |
86fef5b4 | 368 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf\r |
369 | MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf\r | |
79c098b6 | 370 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf\r |
b90aefa9 | 371 | !ifdef $(DEBUG_ON_SERIAL_PORT)\r |
86fef5b4 | 372 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf\r |
b90aefa9 | 373 | !else\r |
374 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf\r | |
375 | !endif\r | |
c47ed6fc | 376 | PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf\r |
86fef5b4 | 377 | \r |
988e5986 GS |
378 | [LibraryClasses.common.DXE_SMM_DRIVER]\r |
379 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf\r | |
380 | TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf\r | |
67d86594 | 381 | MemoryAllocationLib|MdePkg/Library/SmmMemoryAllocationLib/SmmMemoryAllocationLib.inf\r |
fc5b5e5c | 382 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf\r |
67d86594 LE |
383 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf\r |
384 | SmmMemLib|MdePkg/Library/SmmMemLib/SmmMemLib.inf\r | |
8dbe742d LE |
385 | SmmServicesTableLib|MdePkg/Library/SmmServicesTableLib/SmmServicesTableLib.inf\r |
386 | !ifdef $(DEBUG_ON_SERIAL_PORT)\r | |
387 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf\r | |
388 | !else\r | |
389 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf\r | |
390 | !endif\r | |
c30ff8f4 | 391 | CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmCpuExceptionHandlerLib.inf\r |
cbd5d723 MK |
392 | !ifdef $(SOURCE_DEBUG_ENABLE)\r |
393 | DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.inf\r | |
394 | !endif\r | |
46df0216 | 395 | BaseCryptLib|CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf\r |
c47ed6fc | 396 | PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf\r |
988e5986 GS |
397 | \r |
398 | [LibraryClasses.common.SMM_CORE]\r | |
399 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf\r | |
400 | TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf\r | |
f25cb158 LE |
401 | SmmCorePlatformHookLib|MdeModulePkg/Library/SmmCorePlatformHookLibNull/SmmCorePlatformHookLibNull.inf\r |
402 | MemoryAllocationLib|MdeModulePkg/Library/PiSmmCoreMemoryAllocationLib/PiSmmCoreMemoryAllocationLib.inf\r | |
403 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf\r | |
404 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf\r | |
405 | SmmMemLib|MdePkg/Library/SmmMemLib/SmmMemLib.inf\r | |
406 | SmmServicesTableLib|MdeModulePkg/Library/PiSmmCoreSmmServicesTableLib/PiSmmCoreSmmServicesTableLib.inf\r | |
407 | !ifdef $(DEBUG_ON_SERIAL_PORT)\r | |
408 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf\r | |
409 | !else\r | |
410 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf\r | |
411 | !endif\r | |
c47ed6fc | 412 | PciLib|OvmfPkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf\r |
988e5986 | 413 | \r |
49ba9447 | 414 | ################################################################################\r |
415 | #\r | |
416 | # Pcd Section - list of all EDK II PCD Entries defined by this Platform.\r | |
417 | #\r | |
418 | ################################################################################\r | |
7b202cb0 | 419 | [PcdsFeatureFlag]\r |
eccc28bf | 420 | gEfiMdeModulePkgTokenSpaceGuid.PcdHiiOsRuntimeSupport|FALSE\r |
e8d1b8d8 | 421 | gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE\r |
422 | gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory|TRUE\r | |
8fa729a8 LG |
423 | gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportUefiDecompress|FALSE\r |
424 | gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE\r | |
8fa729a8 LG |
425 | gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport|TRUE\r |
426 | gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|FALSE\r | |
259d8714 | 427 | gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol|TRUE\r |
1f695483 LE |
428 | !if $(SMM_REQUIRE) == TRUE\r |
429 | gUefiOvmfPkgTokenSpaceGuid.PcdSmmSmramRequire|TRUE\r | |
896d3dcf | 430 | gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmEnableBspElection|FALSE\r |
1f695483 | 431 | !endif\r |
49ba9447 | 432 | \r |
7b202cb0 | 433 | [PcdsFixedAtBuild]\r |
e6d3b270 | 434 | gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1\r |
670a64e7 | 435 | gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE\r |
49ba9447 | 436 | gEfiMdePkgTokenSpaceGuid.PcdMaximumGuidedExtractHandler|0x10\r |
437 | gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxFvSupported|6\r | |
438 | gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeimPerFv|32\r | |
88a30bbc | 439 | !if ($(FD_SIZE_IN_KB) == 1024) || ($(FD_SIZE_IN_KB) == 2048)\r |
fd4ba547 | 440 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x2000\r |
f5404a3e | 441 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxAuthVariableSize|0x2800\r |
9c7d0d49 | 442 | !if $(TLS_ENABLE) == FALSE\r |
c95e6d09 | 443 | # match PcdFlashNvStorageVariableSize purely for convenience\r |
62f43f7c | 444 | gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0xe000\r |
88a30bbc | 445 | !endif\r |
9c7d0d49 | 446 | !endif\r |
88a30bbc LE |
447 | !if $(FD_SIZE_IN_KB) == 4096\r |
448 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x8400\r | |
449 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxAuthVariableSize|0x8400\r | |
9c7d0d49 | 450 | !if $(TLS_ENABLE) == FALSE\r |
c95e6d09 | 451 | # match PcdFlashNvStorageVariableSize purely for convenience\r |
62f43f7c | 452 | gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0x40000\r |
88a30bbc | 453 | !endif\r |
9c7d0d49 LE |
454 | !endif\r |
455 | !if $(TLS_ENABLE) == TRUE\r | |
456 | gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0x80000\r | |
457 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVolatileVariableSize|0x40000\r | |
458 | !endif\r | |
49ba9447 | 459 | \r |
49ba9447 | 460 | gEfiMdeModulePkgTokenSpaceGuid.PcdVpdBaseAddress|0x0\r |
461 | \r | |
49ba9447 | 462 | gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07\r |
cf23c02a LE |
463 | \r |
464 | # DEBUG_INIT 0x00000001 // Initialization\r | |
465 | # DEBUG_WARN 0x00000002 // Warnings\r | |
466 | # DEBUG_LOAD 0x00000004 // Load events\r | |
467 | # DEBUG_FS 0x00000008 // EFI File system\r | |
468 | # DEBUG_POOL 0x00000010 // Alloc & Free (pool)\r | |
469 | # DEBUG_PAGE 0x00000020 // Alloc & Free (page)\r | |
470 | # DEBUG_INFO 0x00000040 // Informational debug messages\r | |
471 | # DEBUG_DISPATCH 0x00000080 // PEI/DXE/SMM Dispatchers\r | |
472 | # DEBUG_VARIABLE 0x00000100 // Variable\r | |
473 | # DEBUG_BM 0x00000400 // Boot Manager\r | |
474 | # DEBUG_BLKIO 0x00001000 // BlkIo Driver\r | |
475 | # DEBUG_NET 0x00004000 // SNP Driver\r | |
476 | # DEBUG_UNDI 0x00010000 // UNDI Driver\r | |
477 | # DEBUG_LOADFILE 0x00020000 // LoadFile\r | |
478 | # DEBUG_EVENT 0x00080000 // Event messages\r | |
479 | # DEBUG_GCD 0x00100000 // Global Coherency Database changes\r | |
480 | # DEBUG_CACHE 0x00200000 // Memory range cachability changes\r | |
481 | # DEBUG_VERBOSE 0x00400000 // Detailed debug messages that may\r | |
482 | # // significantly impact boot performance\r | |
483 | # DEBUG_ERROR 0x80000000 // Error\r | |
49ba9447 | 484 | gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x8000004F\r |
cf23c02a | 485 | \r |
c6efcc2a | 486 | !ifdef $(SOURCE_DEBUG_ENABLE)\r |
487 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x17\r | |
488 | !else\r | |
49ba9447 | 489 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x2F\r |
c6efcc2a | 490 | !endif\r |
491 | \r | |
7b8fe635 LE |
492 | # This PCD is used to set the base address of the PCI express hierarchy. It\r |
493 | # is only consulted when OVMF runs on Q35. In that case it is programmed into\r | |
494 | # the PCIEXBAR register.\r | |
495 | #\r | |
496 | # On Q35 machine types that QEMU intends to support in the long term, QEMU\r | |
497 | # never lets the RAM below 4 GB exceed 2 GB.\r | |
498 | gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress|0x80000000\r | |
499 | \r | |
670a64e7 | 500 | !ifdef $(SOURCE_DEBUG_ENABLE)\r |
c6efcc2a | 501 | gEfiSourceLevelDebugPkgTokenSpaceGuid.PcdDebugLoadImageMethod|0x2\r |
670a64e7 | 502 | !endif\r |
49ba9447 | 503 | \r |
4b2fb798 JW |
504 | !if $(HTTP_BOOT_ENABLE) == TRUE\r |
505 | gEfiNetworkPkgTokenSpaceGuid.PcdAllowHttpConnections|TRUE\r | |
506 | !endif\r | |
507 | \r | |
9bef3cdc | 508 | !ifndef $(USE_OLD_SHELL)\r |
345a0c8f | 509 | gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdShellFile|{ 0x83, 0xA5, 0x04, 0x7C, 0x3E, 0x9E, 0x1C, 0x4F, 0xAD, 0x65, 0xE0, 0x52, 0x68, 0xD0, 0xB4, 0xD1 }\r |
345a0c8f | 510 | !endif\r |
511 | \r | |
9b1e3788 | 512 | !if $(SMM_REQUIRE) == TRUE\r |
0d0c245d | 513 | gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmStackSize|0x4000\r |
9b1e3788 PB |
514 | !endif\r |
515 | \r | |
7ca126ff | 516 | # IRQs 5, 9, 10, 11 are level-triggered\r |
517 | gPcAtChipsetPkgTokenSpaceGuid.Pcd8259LegacyModeEdgeLevel|0x0E20\r | |
518 | \r | |
79c098b6 RN |
519 | # Point to the MdeModulePkg/Application/UiApp/UiApp.inf\r |
520 | gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile|{ 0x21, 0xaa, 0x2c, 0x46, 0x14, 0x76, 0x03, 0x45, 0x83, 0x6e, 0x8a, 0xb6, 0xf4, 0x66, 0x23, 0x31 }\r | |
521 | \r | |
49ba9447 | 522 | ################################################################################\r |
523 | #\r | |
524 | # Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform\r | |
525 | #\r | |
526 | ################################################################################\r | |
527 | \r | |
7b202cb0 | 528 | [PcdsDynamicDefault]\r |
5e167d7e LE |
529 | # only set when\r |
530 | # ($(SMM_REQUIRE) == FALSE)\r | |
77ba993c | 531 | gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvStoreReserved|0\r |
5e167d7e | 532 | \r |
e3130268 | 533 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64|0\r |
27f58ea1 | 534 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0\r |
535 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0\r | |
447d2641 | 536 | gEfiMdeModulePkgTokenSpaceGuid.PcdPciDisableBusEnumeration|FALSE\r |
c4341e3a LE |
537 | gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution|800\r |
538 | gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution|600\r | |
a1726e30 | 539 | gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable|FALSE\r |
d55004da | 540 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfHostBridgePciDevId|0\r |
c4df7fd0 LE |
541 | gUefiOvmfPkgTokenSpaceGuid.PcdPciIoBase|0x0\r |
542 | gUefiOvmfPkgTokenSpaceGuid.PcdPciIoSize|0x0\r | |
03845e90 LE |
543 | gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio32Base|0x0\r |
544 | gUefiOvmfPkgTokenSpaceGuid.PcdPciMmio32Size|0x0\r | |
27f58ea1 | 545 | \r |
86a9c7a7 | 546 | gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|0\r |
49ba9447 | 547 | \r |
848834cb | 548 | # Set video resolution for text setup.\r |
86a9c7a7 RN |
549 | gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoHorizontalResolution|640\r |
550 | gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution|480\r | |
848834cb | 551 | \r |
37baf06b | 552 | gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosVersion|0x0208\r |
c3db5a8c | 553 | gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosDocRev|0x0\r |
6fbef93e | 554 | gUefiOvmfPkgTokenSpaceGuid.PcdQemuSmbiosValidated|FALSE\r |
37baf06b | 555 | \r |
d26753f8 | 556 | # Noexec settings for DXE.\r |
d20b06a3 | 557 | gEfiMdeModulePkgTokenSpaceGuid.PcdSetNxForStack|FALSE\r |
c075d250 | 558 | gEfiMdeModulePkgTokenSpaceGuid.PcdPropertiesTableEnable|FALSE\r |
d26753f8 | 559 | \r |
45a70db3 LE |
560 | # UefiCpuPkg PCDs related to initial AP bringup and general AP management.\r |
561 | gUefiCpuPkgTokenSpaceGuid.PcdCpuMaxLogicalProcessorNumber|64\r | |
562 | gUefiCpuPkgTokenSpaceGuid.PcdCpuApInitTimeOutInMicroSeconds|50000\r | |
563 | \r | |
13b5d743 BS |
564 | # Set memory encryption mask\r |
565 | gEfiMdeModulePkgTokenSpaceGuid.PcdPteMemoryEncryptionAddressOrMask|0x0\r | |
566 | \r | |
22d7be69 | 567 | !if $(SMM_REQUIRE) == TRUE\r |
966dbaf4 | 568 | gUefiOvmfPkgTokenSpaceGuid.PcdQ35TsegMbytes|8\r |
22d7be69 LE |
569 | gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmSyncMode|0x01\r |
570 | gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmApSyncTimeout|100000\r | |
571 | !endif\r | |
572 | \r | |
6041ac65 | 573 | gEfiSecurityPkgTokenSpaceGuid.PcdOptionRomImageVerificationPolicy|0x00\r |
6041ac65 | 574 | \r |
6cf1880f MAL |
575 | !if $(TPM2_ENABLE) == TRUE\r |
576 | gEfiSecurityPkgTokenSpaceGuid.PcdTpmInstanceGuid|{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}\r | |
577 | !endif\r | |
578 | \r | |
49ba9447 | 579 | ################################################################################\r |
580 | #\r | |
581 | # Components Section - list of all EDK II Modules needed by this Platform.\r | |
582 | #\r | |
583 | ################################################################################\r | |
7b202cb0 | 584 | [Components]\r |
497cbb53 JJ |
585 | OvmfPkg/ResetVector/ResetVector.inf\r |
586 | \r | |
49ba9447 | 587 | #\r |
588 | # SEC Phase modules\r | |
589 | #\r | |
c1c2669c | 590 | OvmfPkg/Sec/SecMain.inf {\r |
591 | <LibraryClasses>\r | |
d2daa3db | 592 | NULL|MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf\r |
c1c2669c | 593 | }\r |
49ba9447 | 594 | \r |
595 | #\r | |
596 | # PEI Phase modules\r | |
597 | #\r | |
598 | MdeModulePkg/Core/Pei/PeiMain.inf\r | |
599 | MdeModulePkg/Universal/PCD/Pei/Pcd.inf {\r | |
600 | <LibraryClasses>\r | |
601 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf\r | |
602 | }\r | |
fbce1fe9 LE |
603 | MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf {\r |
604 | <LibraryClasses>\r | |
605 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf\r | |
606 | }\r | |
607 | MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf {\r | |
608 | <LibraryClasses>\r | |
609 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf\r | |
610 | }\r | |
639c7dd8 | 611 | MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf\r |
77ba993c | 612 | \r |
639c7dd8 | 613 | OvmfPkg/PlatformPei/PlatformPei.inf\r |
5fb6fc0f LE |
614 | UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf {\r |
615 | <LibraryClasses>\r | |
67d86594 LE |
616 | !if $(SMM_REQUIRE) == TRUE\r |
617 | LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxPeiLib.inf\r | |
618 | !endif\r | |
5fb6fc0f | 619 | }\r |
9d560947 | 620 | !if $(SMM_REQUIRE) == TRUE\r |
639c7dd8 | 621 | OvmfPkg/SmmAccess/SmmAccessPei.inf\r |
9d560947 | 622 | !endif\r |
639c7dd8 | 623 | UefiCpuPkg/CpuMpPei/CpuMpPei.inf\r |
49ba9447 | 624 | \r |
6cf1880f MAL |
625 | !if $(TPM2_ENABLE) == TRUE\r |
626 | OvmfPkg/Tcg/Tcg2Config/Tcg2ConfigPei.inf\r | |
4672a489 MAL |
627 | SecurityPkg/Tcg/Tcg2Pei/Tcg2Pei.inf {\r |
628 | <LibraryClasses>\r | |
629 | HashLib|SecurityPkg/Library/HashLibBaseCryptoRouter/HashLibBaseCryptoRouterPei.inf\r | |
630 | NULL|SecurityPkg/Library/HashInstanceLibSha1/HashInstanceLibSha1.inf\r | |
631 | NULL|SecurityPkg/Library/HashInstanceLibSha256/HashInstanceLibSha256.inf\r | |
632 | }\r | |
6cf1880f MAL |
633 | !endif\r |
634 | \r | |
49ba9447 | 635 | #\r |
636 | # DXE Phase modules\r | |
637 | #\r | |
638 | MdeModulePkg/Core/Dxe/DxeMain.inf {\r | |
639 | <LibraryClasses>\r | |
d2daa3db | 640 | NULL|MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf\r |
5c3481b0 | 641 | DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf\r |
49ba9447 | 642 | }\r |
643 | \r | |
a6d594c5 CS |
644 | MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf\r |
645 | MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf\r | |
49ba9447 | 646 | MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {\r |
647 | <LibraryClasses>\r | |
648 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf\r | |
649 | }\r | |
650 | \r | |
651 | MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf\r | |
8cee3de7 | 652 | \r |
8cee3de7 | 653 | MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf {\r |
654 | <LibraryClasses>\r | |
5487d002 | 655 | !if $(SECURE_BOOT_ENABLE) == TRUE\r |
8cee3de7 | 656 | NULL|SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.inf\r |
d5a002ab MAL |
657 | !endif\r |
658 | !if $(TPM2_ENABLE) == TRUE\r | |
659 | NULL|SecurityPkg/Library/DxeTpm2MeasureBootLib/DxeTpm2MeasureBootLib.inf\r | |
8cee3de7 | 660 | !endif\r |
5487d002 | 661 | }\r |
8cee3de7 | 662 | \r |
e6d3b270 | 663 | MdeModulePkg/Universal/EbcDxe/EbcDxe.inf\r |
49ba9447 | 664 | PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf\r |
73cbc580 | 665 | UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf\r |
49ba9447 | 666 | UefiCpuPkg/CpuDxe/CpuDxe.inf\r |
667 | PcAtChipsetPkg/8254TimerDxe/8254Timer.inf\r | |
855743f7 | 668 | OvmfPkg/IncompatiblePciDeviceSupportDxe/IncompatiblePciDeviceSupport.inf\r |
8aba40b7 | 669 | OvmfPkg/PciHotPlugInitDxe/PciHotPlugInit.inf\r |
4014885f LE |
670 | MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostBridgeDxe.inf {\r |
671 | <LibraryClasses>\r | |
672 | PciHostBridgeLib|OvmfPkg/Library/PciHostBridgeLib/PciHostBridgeLib.inf\r | |
c6ab9aec | 673 | NULL|OvmfPkg/Library/PlatformHasIoMmuLib/PlatformHasIoMmuLib.inf\r |
4014885f | 674 | }\r |
447d2641 WL |
675 | MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf {\r |
676 | <LibraryClasses>\r | |
677 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf\r | |
678 | }\r | |
f90472e1 | 679 | MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf\r |
170ef2d9 GS |
680 | MdeModulePkg/Universal/Metronome/Metronome.inf\r |
681 | PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf\r | |
ba502ef4 | 682 | MdeModulePkg/Universal/DriverHealthManagerDxe/DriverHealthManagerDxe.inf\r |
79c098b6 RN |
683 | MdeModulePkg/Universal/BdsDxe/BdsDxe.inf {\r |
684 | <LibraryClasses>\r | |
685 | !ifdef $(CSM_ENABLE)\r | |
686 | NULL|OvmfPkg/Csm/CsmSupportLib/CsmSupportLib.inf\r | |
687 | NULL|IntelFrameworkModulePkg/Library/LegacyBootManagerLib/LegacyBootManagerLib.inf\r | |
688 | !endif\r | |
689 | }\r | |
ab970515 | 690 | MdeModulePkg/Logo/LogoDxe.inf\r |
79c098b6 RN |
691 | MdeModulePkg/Application/UiApp/UiApp.inf {\r |
692 | <LibraryClasses>\r | |
693 | NULL|MdeModulePkg/Library/DeviceManagerUiLib/DeviceManagerUiLib.inf\r | |
694 | NULL|MdeModulePkg/Library/BootManagerUiLib/BootManagerUiLib.inf\r | |
695 | NULL|MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerUiLib.inf\r | |
696 | !ifdef $(CSM_ENABLE)\r | |
697 | NULL|IntelFrameworkModulePkg/Library/LegacyBootManagerLib/LegacyBootManagerLib.inf\r | |
698 | NULL|IntelFrameworkModulePkg/Library/LegacyBootMaintUiLib/LegacyBootMaintUiLib.inf\r | |
699 | !endif\r | |
700 | }\r | |
efd82c57 | 701 | OvmfPkg/BlockMmioToBlockIoDxe/BlockIo.inf\r |
56f65ed8 | 702 | OvmfPkg/VirtioPciDeviceDxe/VirtioPciDeviceDxe.inf\r |
8456a7da | 703 | OvmfPkg/Virtio10Dxe/Virtio10.inf\r |
fd51d759 | 704 | OvmfPkg/VirtioBlkDxe/VirtioBlk.inf\r |
37078a63 | 705 | OvmfPkg/VirtioScsiDxe/VirtioScsi.inf\r |
b38ec3cd | 706 | OvmfPkg/VirtioRngDxe/VirtioRng.inf\r |
d9fdfd85 | 707 | OvmfPkg/XenIoPciDxe/XenIoPciDxe.inf\r |
e65e8802 | 708 | OvmfPkg/XenBusDxe/XenBusDxe.inf\r |
de671da8 | 709 | OvmfPkg/XenPvBlkDxe/XenPvBlkDxe.inf\r |
49ba9447 | 710 | MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf\r |
711 | MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf\r | |
712 | MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf\r | |
713 | MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf\r | |
714 | MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf\r | |
c4341e3a LE |
715 | MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf {\r |
716 | <LibraryClasses>\r | |
717 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf\r | |
718 | }\r | |
49ba9447 | 719 | MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf\r |
5c3481b0 RN |
720 | MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf {\r |
721 | <LibraryClasses>\r | |
722 | DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf\r | |
723 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf\r | |
724 | }\r | |
86fef5b4 | 725 | MdeModulePkg/Universal/PrintDxe/PrintDxe.inf\r |
49ba9447 | 726 | MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf\r |
727 | MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf\r | |
00f18da1 | 728 | MdeModulePkg/Universal/Disk/RamDiskDxe/RamDiskDxe.inf\r |
49ba9447 | 729 | MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf\r |
aa47e529 | 730 | FatPkg/EnhancedFatDxe/Fat.inf\r |
f5566d15 | 731 | MdeModulePkg/Universal/Disk/UdfDxe/UdfDxe.inf\r |
49ba9447 | 732 | MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf\r |
733 | MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf\r | |
b82802b8 RJ |
734 | OvmfPkg/SataControllerDxe/SataControllerDxe.inf\r |
735 | MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf\r | |
736 | MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf\r | |
8ae3832d | 737 | MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf\r |
49ba9447 | 738 | MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf\r |
739 | MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf\r | |
56af21cb | 740 | MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf\r |
999a815e | 741 | MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf\r |
49ba9447 | 742 | \r |
bd52d4ff | 743 | OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf\r |
b3eab015 | 744 | OvmfPkg/VirtioGpuDxe/VirtioGpu.inf\r |
49ba9447 | 745 | \r |
746 | #\r | |
747 | # ISA Support\r | |
748 | #\r | |
749 | PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf\r | |
750 | IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf\r | |
751 | IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/IsaSerialDxe.inf\r | |
752 | IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf\r | |
753 | IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/IsaFloppyDxe.inf\r | |
754 | \r | |
fb511817 | 755 | #\r |
756 | # SMBIOS Support\r | |
757 | #\r | |
98937dc2 LE |
758 | MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf {\r |
759 | <LibraryClasses>\r | |
760 | NULL|OvmfPkg/Library/SmbiosVersionLib/DetectSmbiosVersionLib.inf\r | |
761 | }\r | |
fb511817 | 762 | OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.inf\r |
763 | \r | |
49ba9447 | 764 | #\r |
765 | # ACPI Support\r | |
766 | #\r | |
767 | MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf\r | |
7d2bd150 | 768 | OvmfPkg/AcpiPlatformDxe/AcpiPlatformDxe.inf\r |
49ba9447 | 769 | OvmfPkg/AcpiTables/AcpiTables.inf\r |
b017b1b2 | 770 | MdeModulePkg/Universal/Acpi/S3SaveStateDxe/S3SaveStateDxe.inf\r |
93900400 | 771 | MdeModulePkg/Universal/Acpi/BootScriptExecutorDxe/BootScriptExecutorDxe.inf\r |
6e5e544f | 772 | MdeModulePkg/Universal/Acpi/BootGraphicsResourceTableDxe/BootGraphicsResourceTableDxe.inf\r |
7416f4eb | 773 | \r |
774 | #\r | |
775 | # Network Support\r | |
776 | #\r | |
7416f4eb | 777 | MdeModulePkg/Universal/Network/SnpDxe/SnpDxe.inf\r |
778 | MdeModulePkg/Universal/Network/DpcDxe/DpcDxe.inf\r | |
779 | MdeModulePkg/Universal/Network/MnpDxe/MnpDxe.inf\r | |
780 | MdeModulePkg/Universal/Network/VlanConfigDxe/VlanConfigDxe.inf\r | |
781 | MdeModulePkg/Universal/Network/ArpDxe/ArpDxe.inf\r | |
782 | MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf\r | |
7416f4eb | 783 | MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Dxe.inf\r |
784 | MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf\r | |
7416f4eb | 785 | MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Dxe.inf\r |
36c6413f GL |
786 | !if $(NETWORK_IP6_ENABLE) == TRUE\r |
787 | NetworkPkg/Ip6Dxe/Ip6Dxe.inf\r | |
788 | NetworkPkg/TcpDxe/TcpDxe.inf\r | |
789 | NetworkPkg/Udp6Dxe/Udp6Dxe.inf\r | |
790 | NetworkPkg/Dhcp6Dxe/Dhcp6Dxe.inf\r | |
791 | NetworkPkg/Mtftp6Dxe/Mtftp6Dxe.inf\r | |
792 | NetworkPkg/UefiPxeBcDxe/UefiPxeBcDxe.inf\r | |
36c6413f | 793 | NetworkPkg/IScsiDxe/IScsiDxe.inf\r |
36c6413f GL |
794 | !else\r |
795 | MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Dxe.inf\r | |
7416f4eb | 796 | MdeModulePkg/Universal/Network/UefiPxeBcDxe/UefiPxeBcDxe.inf\r |
797 | MdeModulePkg/Universal/Network/IScsiDxe/IScsiDxe.inf\r | |
ab44a6e8 GCPL |
798 | !endif\r |
799 | !if $(HTTP_BOOT_ENABLE) == TRUE\r | |
800 | NetworkPkg/DnsDxe/DnsDxe.inf\r | |
1a85139d | 801 | NetworkPkg/HttpUtilitiesDxe/HttpUtilitiesDxe.inf\r |
ab44a6e8 GCPL |
802 | NetworkPkg/HttpDxe/HttpDxe.inf\r |
803 | NetworkPkg/HttpBootDxe/HttpBootDxe.inf\r | |
315d9d08 GL |
804 | !endif\r |
805 | !if $(TLS_ENABLE) == TRUE\r | |
806 | NetworkPkg/TlsDxe/TlsDxe.inf\r | |
9c7d0d49 LE |
807 | NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigDxe.inf {\r |
808 | <LibraryClasses>\r | |
809 | NULL|OvmfPkg/Library/TlsAuthConfigLib/TlsAuthConfigLib.inf\r | |
810 | }\r | |
36c6413f | 811 | !endif\r |
7a1f5947 | 812 | OvmfPkg/VirtioNetDxe/VirtioNet.inf\r |
152d9a6b | 813 | \r |
689562cd | 814 | #\r |
815 | # Usb Support\r | |
816 | #\r | |
817 | MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf\r | |
818 | MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf\r | |
47e57f4f | 819 | MdeModulePkg/Bus/Pci/XhciDxe/XhciDxe.inf\r |
689562cd | 820 | MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf\r |
821 | MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf\r | |
822 | MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf\r | |
823 | \r | |
4b3d663f | 824 | !ifdef $(CSM_ENABLE)\r |
e04cca1d PB |
825 | IntelFrameworkModulePkg/Csm/BiosThunk/VideoDxe/VideoDxe.inf {\r |
826 | <LibraryClasses>\r | |
827 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf\r | |
828 | }\r | |
4b3d663f | 829 | IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBiosDxe.inf\r |
830 | OvmfPkg/Csm/Csm16/Csm16.inf\r | |
831 | !endif\r | |
832 | \r | |
9bef3cdc | 833 | !ifndef $(USE_OLD_SHELL)\r |
984ba6a4 RN |
834 | ShellPkg/DynamicCommand/TftpDynamicCommand/TftpDynamicCommand.inf {\r |
835 | <PcdsFixedAtBuild>\r | |
836 | gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE\r | |
837 | }\r | |
345a0c8f | 838 | ShellPkg/Application/Shell/Shell.inf {\r |
839 | <LibraryClasses>\r | |
840 | ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf\r | |
841 | NULL|ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf\r | |
842 | NULL|ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf\r | |
843 | NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf\r | |
844 | NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf\r | |
845 | NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf\r | |
846 | NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf\r | |
847 | NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf\r | |
96302b80 GL |
848 | !if $(NETWORK_IP6_ENABLE) == TRUE\r |
849 | NULL|ShellPkg/Library/UefiShellNetwork2CommandsLib/UefiShellNetwork2CommandsLib.inf\r | |
850 | !endif\r | |
345a0c8f | 851 | HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf\r |
345a0c8f | 852 | PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf\r |
9fc9f4d8 | 853 | BcfgCommandLib|ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.inf\r |
345a0c8f | 854 | \r |
855 | <PcdsFixedAtBuild>\r | |
856 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xFF\r | |
857 | gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE\r | |
858 | gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|8000\r | |
859 | }\r | |
860 | !endif\r | |
861 | \r | |
8cee3de7 | 862 | !if $(SECURE_BOOT_ENABLE) == TRUE\r |
8714a631 | 863 | SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigDxe.inf\r |
8cee3de7 | 864 | !endif\r |
d945a8ba LE |
865 | \r |
866 | OvmfPkg/PlatformDxe/Platform.inf\r | |
f9d129e6 | 867 | OvmfPkg/IoMmuDxe/IoMmuDxe.inf\r |
c5b7c805 LE |
868 | \r |
869 | !if $(SMM_REQUIRE) == TRUE\r | |
870 | OvmfPkg/SmmAccess/SmmAccess2Dxe.inf\r | |
c40e1a0c | 871 | OvmfPkg/SmmControl2Dxe/SmmControl2Dxe.inf\r |
92b87f1c | 872 | UefiCpuPkg/CpuS3DataDxe/CpuS3DataDxe.inf\r |
f25cb158 LE |
873 | \r |
874 | #\r | |
875 | # SMM Initial Program Load (a DXE_RUNTIME_DRIVER)\r | |
876 | #\r | |
877 | MdeModulePkg/Core/PiSmmCore/PiSmmIpl.inf\r | |
878 | \r | |
879 | #\r | |
880 | # SMM_CORE\r | |
881 | #\r | |
882 | MdeModulePkg/Core/PiSmmCore/PiSmmCore.inf\r | |
8dbe742d LE |
883 | \r |
884 | #\r | |
885 | # Privileged drivers (DXE_SMM_DRIVER modules)\r | |
886 | #\r | |
887 | UefiCpuPkg/CpuIo2Smm/CpuIo2Smm.inf\r | |
67d86594 LE |
888 | MdeModulePkg/Universal/LockBox/SmmLockBox/SmmLockBox.inf {\r |
889 | <LibraryClasses>\r | |
890 | LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxSmmLib.inf\r | |
891 | }\r | |
0d5d4205 LE |
892 | UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.inf {\r |
893 | <LibraryClasses>\r | |
894 | SmmCpuPlatformHookLib|UefiCpuPkg/Library/SmmCpuPlatformHookLibNull/SmmCpuPlatformHookLibNull.inf\r | |
895 | SmmCpuFeaturesLib|OvmfPkg/Library/SmmCpuFeaturesLib/SmmCpuFeaturesLib.inf\r | |
896 | }\r | |
1b0a8e62 LE |
897 | \r |
898 | #\r | |
46df0216 LE |
899 | # Variable driver stack (SMM)\r |
900 | #\r | |
901 | OvmfPkg/QemuFlashFvbServicesRuntimeDxe/FvbServicesSmm.inf\r | |
902 | MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteSmm.inf\r | |
903 | MdeModulePkg/Universal/Variable/RuntimeDxe/VariableSmm.inf {\r | |
904 | <LibraryClasses>\r | |
905 | NULL|MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf\r | |
906 | }\r | |
907 | MdeModulePkg/Universal/Variable/RuntimeDxe/VariableSmmRuntimeDxe.inf\r | |
908 | \r | |
909 | !else\r | |
910 | \r | |
911 | #\r | |
912 | # Variable driver stack (non-SMM)\r | |
1b0a8e62 LE |
913 | #\r |
914 | OvmfPkg/QemuFlashFvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf\r | |
915 | OvmfPkg/EmuVariableFvbRuntimeDxe/Fvb.inf {\r | |
916 | <LibraryClasses>\r | |
917 | PlatformFvbLib|OvmfPkg/Library/EmuVariableFvbLib/EmuVariableFvbLib.inf\r | |
918 | }\r | |
919 | MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf\r | |
920 | MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf {\r | |
921 | <LibraryClasses>\r | |
922 | NULL|MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf\r | |
923 | }\r | |
46df0216 | 924 | !endif\r |
0c0a50d6 MAL |
925 | \r |
926 | !if $(TPM2_ENABLE) == TRUE\r | |
927 | SecurityPkg/Tcg/Tcg2Dxe/Tcg2Dxe.inf {\r | |
928 | <LibraryClasses>\r | |
929 | Tpm2DeviceLib|SecurityPkg/Library/Tpm2DeviceLibRouter/Tpm2DeviceLibRouterDxe.inf\r | |
930 | NULL|SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2InstanceLibDTpm.inf\r | |
931 | HashLib|SecurityPkg/Library/HashLibBaseCryptoRouter/HashLibBaseCryptoRouterDxe.inf\r | |
932 | NULL|SecurityPkg/Library/HashInstanceLibSha1/HashInstanceLibSha1.inf\r | |
933 | NULL|SecurityPkg/Library/HashInstanceLibSha256/HashInstanceLibSha256.inf\r | |
934 | }\r | |
935 | !endif\r |