lgao4 | 7b202cb | 2010-02-23 23:58:38 +0000 | [diff] [blame] | 1 | ## @file
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 2 | # EFI/Framework Open Virtual Machine Firmware (OVMF) platform
|
| 3 | #
|
Ruiyu Ni | 86a9c7a | 2015-05-06 03:27:42 +0000 | [diff] [blame] | 4 | # Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 5 | #
|
hhtian | 56d7640 | 2010-04-28 12:43:04 +0000 | [diff] [blame] | 6 | # This program and the accompanying materials
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 7 | # are licensed and made available under the terms and conditions of the BSD License
|
| 8 | # which accompanies this distribution. The full text of the license may be found at
|
| 9 | # http://opensource.org/licenses/bsd-license.php
|
| 10 | #
|
| 11 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
| 12 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
| 13 | #
|
lgao4 | 7b202cb | 2010-02-23 23:58:38 +0000 | [diff] [blame] | 14 | ##
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 15 |
|
| 16 | ################################################################################
|
| 17 | #
|
| 18 | # Defines Section - statements that will be processed to create a Makefile.
|
| 19 | #
|
| 20 | ################################################################################
|
| 21 | [Defines]
|
| 22 | PLATFORM_NAME = Ovmf
|
| 23 | PLATFORM_GUID = 5a9e7754-d81b-49ea-85ad-69eaa7b1539b
|
| 24 | PLATFORM_VERSION = 0.1
|
klu2 | 713b7b5 | 2009-10-22 06:30:20 +0000 | [diff] [blame] | 25 | DSC_SPECIFICATION = 0x00010005
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 26 | OUTPUT_DIRECTORY = Build/Ovmf3264
|
| 27 | SUPPORTED_ARCHITECTURES = IA32|X64
|
| 28 | BUILD_TARGETS = DEBUG|RELEASE
|
| 29 | SKUID_IDENTIFIER = DEFAULT
|
| 30 | FLASH_DEFINITION = OvmfPkg/OvmfPkgIa32X64.fdf
|
| 31 |
|
jljusten | e05061c | 2012-03-09 17:38:21 +0000 | [diff] [blame] | 32 | #
|
| 33 | # Defines for default states. These can be changed on the command line.
|
| 34 | # -D FLAG=VALUE
|
| 35 | #
|
| 36 | DEFINE SECURE_BOOT_ENABLE = FALSE
|
Gary Lin | 36c6413 | 2014-12-19 19:13:44 +0000 | [diff] [blame] | 37 | DEFINE NETWORK_IP6_ENABLE = FALSE
|
Gary Ching-Pang Lin | ab44a6e | 2015-08-23 01:44:15 +0000 | [diff] [blame] | 38 | DEFINE HTTP_BOOT_ENABLE = FALSE
|
jljusten | e05061c | 2012-03-09 17:38:21 +0000 | [diff] [blame] | 39 |
|
jljusten | 0bc7e56 | 2010-01-04 16:18:02 +0000 | [diff] [blame] | 40 | [BuildOptions]
|
jljusten | 0b5a502 | 2012-07-31 17:54:18 +0000 | [diff] [blame] | 41 | GCC:*_UNIXGCC_*_CC_FLAGS = -DMDEPKG_NDEBUG
|
jljusten | 152d9a6 | 2010-10-13 07:07:42 +0000 | [diff] [blame] | 42 | GCC:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG
|
| 43 | INTEL:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
|
| 44 | MSFT:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
|
jljusten | 4a8266f | 2010-12-31 07:55:51 +0000 | [diff] [blame] | 45 | GCC:*_*_*_CC_FLAGS = -mno-mmx -mno-sse
|
mdkinney | bbcafc4 | 2012-10-03 21:00:26 +0000 | [diff] [blame] | 46 | !ifdef $(SOURCE_DEBUG_ENABLE)
|
| 47 | MSFT:*_*_X64_GENFW_FLAGS = --keepexceptiontable
|
| 48 | GCC:*_*_X64_GENFW_FLAGS = --keepexceptiontable
|
| 49 | INTEL:*_*_X64_GENFW_FLAGS = --keepexceptiontable
|
| 50 | !endif
|
Ard Biesheuvel | ddd89cd | 2015-09-30 08:53:00 +0000 | [diff] [blame] | 51 |
|
| 52 | [BuildOptions.common.EDKII.DXE_RUNTIME_DRIVER]
|
| 53 | GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000
|
mdkinney | bbcafc4 | 2012-10-03 21:00:26 +0000 | [diff] [blame] | 54 |
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 55 | ################################################################################
|
| 56 | #
|
| 57 | # SKU Identification section - list of all SKU IDs supported by this Platform.
|
| 58 | #
|
| 59 | ################################################################################
|
| 60 | [SkuIds]
|
| 61 | 0|DEFAULT
|
| 62 |
|
| 63 | ################################################################################
|
| 64 | #
|
| 65 | # Library Class section - list of all Library Classes needed by this Platform.
|
| 66 | #
|
| 67 | ################################################################################
|
lgao4 | 7b202cb | 2010-02-23 23:58:38 +0000 | [diff] [blame] | 68 | [LibraryClasses]
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 69 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
Gabriel Somlo | 170ef2d | 2014-11-14 00:38:17 +0000 | [diff] [blame] | 70 | TimerLib|OvmfPkg/Library/AcpiTimerLib/BaseAcpiTimerLib.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 71 | PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
|
jljusten | 4a8266f | 2010-12-31 07:55:51 +0000 | [diff] [blame] | 72 | BaseMemoryLib|MdePkg/Library/BaseMemoryLibRepStr/BaseMemoryLibRepStr.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 73 | BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
|
| 74 | SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
|
| 75 | CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
|
| 76 | PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
|
| 77 | PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 78 | CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
|
| 79 | UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf
|
| 80 | UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
|
| 81 | HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 82 | GenericBdsLib|IntelFrameworkModulePkg/Library/GenericBdsLib/GenericBdsLib.inf
|
| 83 | CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
|
| 84 | DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
|
jljusten | cd45566 | 2012-07-31 17:54:30 +0000 | [diff] [blame] | 85 | DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 86 | PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
|
| 87 | PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf
|
| 88 | PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
|
| 89 | IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
|
xli24 | 1630c6d | 2009-12-29 09:36:05 +0000 | [diff] [blame] | 90 | OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 91 | SerialPortLib|PcAtChipsetPkg/Library/SerialIoLib/SerialIoLib.inf
|
| 92 | MtrrLib|UefiCpuPkg/Library/MtrrLib/MtrrLib.inf
|
jljusten | 86fef5b | 2009-06-30 15:57:29 +0000 | [diff] [blame] | 93 | UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
|
| 94 | UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
| 95 | UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
| 96 | UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
|
| 97 | UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
|
Ruiyu Ni | 863986b | 2013-07-26 03:14:08 +0000 | [diff] [blame] | 98 | DevicePathLib|MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLibDevicePathProtocol.inf
|
jljusten | 14b21de | 2009-09-16 16:29:03 +0000 | [diff] [blame] | 99 | NvVarsFileLib|OvmfPkg/Library/NvVarsFileLib/NvVarsFileLib.inf
|
Daryl McDaniel | ae591c1 | 2015-01-13 01:04:07 +0000 | [diff] [blame] | 100 | FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
|
qhuang8 | 284af94 | 2009-11-25 04:26:09 +0000 | [diff] [blame] | 101 | UefiCpuLib|UefiCpuPkg/Library/BaseUefiCpuLib/BaseUefiCpuLib.inf
|
lgao4 | 8273af4 | 2009-11-26 01:33:07 +0000 | [diff] [blame] | 102 | SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
|
mdkinney | 7416f4e | 2010-07-26 18:07:19 +0000 | [diff] [blame] | 103 | NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf
|
| 104 | IpIoLib|MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf
|
| 105 | UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf
|
| 106 | DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf
|
jljusten | 689562c | 2010-12-31 07:55:38 +0000 | [diff] [blame] | 107 | UefiUsbLib|MdePkg/Library/UefiUsbLib/UefiUsbLib.inf
|
jljusten | b043ebc | 2011-01-30 19:49:54 +0000 | [diff] [blame] | 108 | SerializeVariablesLib|OvmfPkg/Library/SerializeVariablesLib/SerializeVariablesLib.inf
|
jljusten | f1ec65b | 2012-05-30 23:14:38 +0000 | [diff] [blame] | 109 | QemuFwCfgLib|OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgLib.inf
|
jljusten | 263559b | 2012-10-12 18:53:58 +0000 | [diff] [blame] | 110 | VirtioLib|OvmfPkg/Library/VirtioLib/VirtioLib.inf
|
jljusten | 3c0a051 | 2012-11-02 18:27:55 +0000 | [diff] [blame] | 111 | LoadLinuxLib|OvmfPkg/Library/LoadLinuxLib/LoadLinuxLib.inf
|
Laszlo Ersek | 6a7cba7 | 2014-03-04 08:03:23 +0000 | [diff] [blame] | 112 | LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxBaseLib.inf
|
Eric Dong | 56af21c | 2013-08-12 02:24:32 +0000 | [diff] [blame] | 113 | CustomizedDisplayLib|MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf
|
vanjeff | c6efcc2 | 2010-09-12 06:46:55 +0000 | [diff] [blame] | 114 |
|
| 115 | !ifdef $(SOURCE_DEBUG_ENABLE)
|
| 116 | PeCoffExtraActionLib|SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf
|
| 117 | DebugCommunicationLib|SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.inf
|
| 118 | !else
|
mdkinney | 42a83e8 | 2010-08-03 07:41:54 +0000 | [diff] [blame] | 119 | PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
|
| 120 | DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
|
vanjeff | c6efcc2 | 2010-09-12 06:46:55 +0000 | [diff] [blame] | 121 | !endif
|
jljusten | 152d9a6 | 2010-10-13 07:07:42 +0000 | [diff] [blame] | 122 |
|
jljusten | 7ca30a6 | 2011-01-13 05:46:52 +0000 | [diff] [blame] | 123 | ResetSystemLib|OvmfPkg/Library/ResetSystemLib/ResetSystemLib.inf
|
vanjeff | c6efcc2 | 2010-09-12 06:46:55 +0000 | [diff] [blame] | 124 | LocalApicLib|UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.inf
|
jljusten | 8cee3de | 2012-03-09 17:38:53 +0000 | [diff] [blame] | 125 | DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
|
| 126 |
|
| 127 | !if $(SECURE_BOOT_ENABLE) == TRUE
|
| 128 | PlatformSecureLib|OvmfPkg/Library/PlatformSecureLib/PlatformSecureLib.inf
|
| 129 | IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf
|
| 130 | OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf
|
Laszlo Ersek | 0d28d28 | 2013-09-21 08:18:03 +0000 | [diff] [blame] | 131 | TpmMeasurementLib|SecurityPkg/Library/DxeTpmMeasurementLib/DxeTpmMeasurementLib.inf
|
Star Zeng | 285542e | 2015-07-01 03:05:47 +0000 | [diff] [blame] | 132 | AuthVariableLib|SecurityPkg/Library/AuthVariableLib/AuthVariableLib.inf
|
Gary Lin | 36c6413 | 2014-12-19 19:13:44 +0000 | [diff] [blame] | 133 | !if $(NETWORK_IP6_ENABLE) == TRUE
|
| 134 | TcpIoLib|MdeModulePkg/Library/DxeTcpIoLib/DxeTcpIoLib.inf
|
| 135 | !endif
|
Star Zeng | 285542e | 2015-07-01 03:05:47 +0000 | [diff] [blame] | 136 | !else
|
| 137 | TpmMeasurementLib|MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf
|
| 138 | AuthVariableLib|MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf
|
jljusten | 8cee3de | 2012-03-09 17:38:53 +0000 | [diff] [blame] | 139 | !endif
|
Star Zeng | 68ef1ad | 2015-08-25 02:59:25 +0000 | [diff] [blame] | 140 | VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf
|
jljusten | 8cee3de | 2012-03-09 17:38:53 +0000 | [diff] [blame] | 141 |
|
Gary Ching-Pang Lin | ab44a6e | 2015-08-23 01:44:15 +0000 | [diff] [blame] | 142 | !if $(HTTP_BOOT_ENABLE) == TRUE
|
| 143 | HttpLib|MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.inf
|
| 144 | !endif
|
| 145 |
|
Laszlo Ersek | b017b1b | 2014-03-04 08:03:50 +0000 | [diff] [blame] | 146 | S3BootScriptLib|MdeModulePkg/Library/PiDxeS3BootScriptLib/DxeS3BootScriptLib.inf
|
| 147 | SmbusLib|MdePkg/Library/BaseSmbusLibNull/BaseSmbusLibNull.inf
|
Laszlo Ersek | 48cc4d0 | 2014-09-22 21:11:02 +0000 | [diff] [blame] | 148 | OrderedCollectionLib|MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/BaseOrderedCollectionRedBlackTreeLib.inf
|
Laszlo Ersek | df040c0 | 2015-03-03 08:13:09 +0000 | [diff] [blame] | 149 | XenHypercallLib|OvmfPkg/Library/XenHypercallLib/XenHypercallLib.inf
|
Laszlo Ersek | b017b1b | 2014-03-04 08:03:50 +0000 | [diff] [blame] | 150 |
|
jljusten | 8cee3de | 2012-03-09 17:38:53 +0000 | [diff] [blame] | 151 | [LibraryClasses.common]
|
| 152 | !if $(SECURE_BOOT_ENABLE) == TRUE
|
| 153 | BaseCryptLib|CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
|
| 154 | !endif
|
mdkinney | 7416f4e | 2010-07-26 18:07:19 +0000 | [diff] [blame] | 155 |
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 156 | [LibraryClasses.common.SEC]
|
Gabriel Somlo | 170ef2d | 2014-11-14 00:38:17 +0000 | [diff] [blame] | 157 | TimerLib|OvmfPkg/Library/AcpiTimerLib/BaseRomAcpiTimerLib.inf
|
Laszlo Ersek | c90decb | 2014-01-03 19:57:36 +0000 | [diff] [blame] | 158 | QemuFwCfgLib|OvmfPkg/Library/QemuFwCfgLib/QemuFwCfgSecLib.inf
|
jljusten | b90aefa | 2012-07-26 16:36:39 +0000 | [diff] [blame] | 159 | !ifdef $(DEBUG_ON_SERIAL_PORT)
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 160 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
jljusten | b90aefa | 2012-07-26 16:36:39 +0000 | [diff] [blame] | 161 | !else
|
| 162 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
|
| 163 | !endif
|
xli24 | abec2e5 | 2009-12-29 09:10:05 +0000 | [diff] [blame] | 164 | ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
lgao4 | fcd7e67 | 2010-05-05 02:06:21 +0000 | [diff] [blame] | 165 | ExtractGuidedSectionLib|MdePkg/Library/BaseExtractGuidedSectionLib/BaseExtractGuidedSectionLib.inf
|
vanjeff | c6efcc2 | 2010-09-12 06:46:55 +0000 | [diff] [blame] | 166 | !ifdef $(SOURCE_DEBUG_ENABLE)
|
| 167 | DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
|
| 168 | !endif
|
mdkinney | 42a83e8 | 2010-08-03 07:41:54 +0000 | [diff] [blame] | 169 | HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
|
| 170 | PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
|
| 171 | PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
|
| 172 | MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
Jeff Fan | 85a32c7 | 2013-11-22 06:31:18 +0000 | [diff] [blame] | 173 | CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuExceptionHandlerLib.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 174 |
|
| 175 | [LibraryClasses.common.PEI_CORE]
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 176 | HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
|
| 177 | PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
|
| 178 | PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
|
| 179 | MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
| 180 | PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
|
xli24 | abec2e5 | 2009-12-29 09:10:05 +0000 | [diff] [blame] | 181 | ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
xli24 | 1630c6d | 2009-12-29 09:36:05 +0000 | [diff] [blame] | 182 | OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 183 | PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
|
jljusten | b90aefa | 2012-07-26 16:36:39 +0000 | [diff] [blame] | 184 | !ifdef $(DEBUG_ON_SERIAL_PORT)
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 185 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
jljusten | b90aefa | 2012-07-26 16:36:39 +0000 | [diff] [blame] | 186 | !else
|
| 187 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
|
| 188 | !endif
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 189 | PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
|
| 190 |
|
| 191 | [LibraryClasses.common.PEIM]
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 192 | HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
|
| 193 | PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
|
| 194 | PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
|
| 195 | MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
| 196 | PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
|
xli24 | abec2e5 | 2009-12-29 09:10:05 +0000 | [diff] [blame] | 197 | ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
xli24 | 1630c6d | 2009-12-29 09:36:05 +0000 | [diff] [blame] | 198 | OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 199 | PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
|
jljusten | b90aefa | 2012-07-26 16:36:39 +0000 | [diff] [blame] | 200 | !ifdef $(DEBUG_ON_SERIAL_PORT)
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 201 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
jljusten | b90aefa | 2012-07-26 16:36:39 +0000 | [diff] [blame] | 202 | !else
|
| 203 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
|
| 204 | !endif
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 205 | PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
|
| 206 | PeiResourcePublicationLib|MdePkg/Library/PeiResourcePublicationLib/PeiResourcePublicationLib.inf
|
| 207 | ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf
|
vanjeff | c6efcc2 | 2010-09-12 06:46:55 +0000 | [diff] [blame] | 208 | !ifdef $(SOURCE_DEBUG_ENABLE)
|
| 209 | DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
|
| 210 | !endif
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 211 |
|
| 212 | [LibraryClasses.common.DXE_CORE]
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 213 | HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
|
| 214 | DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
|
| 215 | MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
|
xli24 | abec2e5 | 2009-12-29 09:10:05 +0000 | [diff] [blame] | 216 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
jljusten | b90aefa | 2012-07-26 16:36:39 +0000 | [diff] [blame] | 217 | !ifdef $(DEBUG_ON_SERIAL_PORT)
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 218 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
jljusten | b90aefa | 2012-07-26 16:36:39 +0000 | [diff] [blame] | 219 | !else
|
| 220 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
|
| 221 | !endif
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 222 | ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
|
vanjeff | c6efcc2 | 2010-09-12 06:46:55 +0000 | [diff] [blame] | 223 | !ifdef $(SOURCE_DEBUG_ENABLE)
|
| 224 | DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
|
| 225 | !endif
|
Jeff Fan | 85a32c7 | 2013-11-22 06:31:18 +0000 | [diff] [blame] | 226 | CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
|
Laszlo Ersek | c075d25 | 2015-09-15 08:35:08 +0000 | [diff] [blame] | 227 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 228 |
|
| 229 | [LibraryClasses.common.DXE_RUNTIME_DRIVER]
|
Gabriel Somlo | 988e598 | 2014-11-14 00:38:53 +0000 | [diff] [blame] | 230 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
Gabriel Somlo | 170ef2d | 2014-11-14 00:38:17 +0000 | [diff] [blame] | 231 | TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 232 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
| 233 | DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
|
| 234 | MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
|
xli24 | abec2e5 | 2009-12-29 09:10:05 +0000 | [diff] [blame] | 235 | ReportStatusCodeLib|MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/RuntimeDxeReportStatusCodeLib.inf
|
jljusten | b90aefa | 2012-07-26 16:36:39 +0000 | [diff] [blame] | 236 | !ifdef $(DEBUG_ON_SERIAL_PORT)
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 237 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
jljusten | b90aefa | 2012-07-26 16:36:39 +0000 | [diff] [blame] | 238 | !else
|
| 239 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
|
| 240 | !endif
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 241 | UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
|
jljusten | 8cee3de | 2012-03-09 17:38:53 +0000 | [diff] [blame] | 242 | !if $(SECURE_BOOT_ENABLE) == TRUE
|
| 243 | BaseCryptLib|CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf
|
| 244 | !endif
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 245 |
|
| 246 | [LibraryClasses.common.UEFI_DRIVER]
|
Gabriel Somlo | 988e598 | 2014-11-14 00:38:53 +0000 | [diff] [blame] | 247 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 248 | TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 249 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
| 250 | DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
|
| 251 | MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
|
xli24 | abec2e5 | 2009-12-29 09:10:05 +0000 | [diff] [blame] | 252 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
jljusten | b90aefa | 2012-07-26 16:36:39 +0000 | [diff] [blame] | 253 | !ifdef $(DEBUG_ON_SERIAL_PORT)
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 254 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
jljusten | b90aefa | 2012-07-26 16:36:39 +0000 | [diff] [blame] | 255 | !else
|
| 256 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
|
| 257 | !endif
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 258 | UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
|
| 259 |
|
| 260 | [LibraryClasses.common.DXE_DRIVER]
|
Gabriel Somlo | 988e598 | 2014-11-14 00:38:53 +0000 | [diff] [blame] | 261 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
Gabriel Somlo | 170ef2d | 2014-11-14 00:38:17 +0000 | [diff] [blame] | 262 | TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 263 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 264 | MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
|
xli24 | abec2e5 | 2009-12-29 09:10:05 +0000 | [diff] [blame] | 265 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 266 | UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
|
jljusten | b90aefa | 2012-07-26 16:36:39 +0000 | [diff] [blame] | 267 | !ifdef $(DEBUG_ON_SERIAL_PORT)
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 268 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
jljusten | b90aefa | 2012-07-26 16:36:39 +0000 | [diff] [blame] | 269 | !else
|
| 270 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
|
| 271 | !endif
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 272 | NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf
|
| 273 | IpIoLib|MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf
|
| 274 | UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf
|
| 275 | DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf
|
| 276 | PlatformBdsLib|OvmfPkg/Library/PlatformBdsLib/PlatformBdsLib.inf
|
Jeff Fan | 85a32c7 | 2013-11-22 06:31:18 +0000 | [diff] [blame] | 277 | CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
|
Laszlo Ersek | 6a7cba7 | 2014-03-04 08:03:23 +0000 | [diff] [blame] | 278 | LockBoxLib|OvmfPkg/Library/LockBoxLib/LockBoxDxeLib.inf
|
Jordan Justen | 3451126 | 2014-03-04 08:04:20 +0000 | [diff] [blame] | 279 | !ifdef $(SOURCE_DEBUG_ENABLE)
|
| 280 | DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
|
| 281 | !endif
|
Laszlo Ersek | cca7475 | 2015-01-02 12:07:57 +0000 | [diff] [blame] | 282 | QemuBootOrderLib|OvmfPkg/Library/QemuBootOrderLib/QemuBootOrderLib.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 283 |
|
jljusten | 86fef5b | 2009-06-30 15:57:29 +0000 | [diff] [blame] | 284 | [LibraryClasses.common.UEFI_APPLICATION]
|
Gabriel Somlo | 988e598 | 2014-11-14 00:38:53 +0000 | [diff] [blame] | 285 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 286 | TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
|
jljusten | 86fef5b | 2009-06-30 15:57:29 +0000 | [diff] [blame] | 287 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
| 288 | MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
|
jljusten | b90aefa | 2012-07-26 16:36:39 +0000 | [diff] [blame] | 289 | !ifdef $(DEBUG_ON_SERIAL_PORT)
|
jljusten | 86fef5b | 2009-06-30 15:57:29 +0000 | [diff] [blame] | 290 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
jljusten | b90aefa | 2012-07-26 16:36:39 +0000 | [diff] [blame] | 291 | !else
|
| 292 | DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
|
| 293 | !endif
|
jljusten | 86fef5b | 2009-06-30 15:57:29 +0000 | [diff] [blame] | 294 |
|
Gabriel Somlo | 988e598 | 2014-11-14 00:38:53 +0000 | [diff] [blame] | 295 | [LibraryClasses.common.DXE_SMM_DRIVER]
|
| 296 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 297 | TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
|
| 298 |
|
| 299 | [LibraryClasses.common.SMM_CORE]
|
| 300 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 301 | TimerLib|OvmfPkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
|
| 302 |
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 303 | ################################################################################
|
| 304 | #
|
| 305 | # Pcd Section - list of all EDK II PCD Entries defined by this Platform.
|
| 306 | #
|
| 307 | ################################################################################
|
lgao4 | 7b202cb | 2010-02-23 23:58:38 +0000 | [diff] [blame] | 308 | [PcdsFeatureFlag]
|
jljusten | e8d1b8d | 2010-01-04 16:18:03 +0000 | [diff] [blame] | 309 | gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE
|
| 310 | gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory|TRUE
|
lgao4 | 8fa729a | 2010-03-15 01:40:59 +0000 | [diff] [blame] | 311 | gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportUefiDecompress|FALSE
|
| 312 | gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|TRUE
|
lgao4 | 8fa729a | 2010-03-15 01:40:59 +0000 | [diff] [blame] | 313 | gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport|TRUE
|
| 314 | gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|FALSE
|
jljusten | e05061c | 2012-03-09 17:38:21 +0000 | [diff] [blame] | 315 | !if $(SECURE_BOOT_ENABLE) == TRUE
|
| 316 | gUefiOvmfPkgTokenSpaceGuid.PcdSecureBootEnable|TRUE
|
| 317 | !endif
|
lgao4 | 8fa729a | 2010-03-15 01:40:59 +0000 | [diff] [blame] | 318 |
|
lgao4 | 7b202cb | 2010-02-23 23:58:38 +0000 | [diff] [blame] | 319 | [PcdsFixedAtBuild]
|
xli24 | e6d3b27 | 2009-12-25 06:36:10 +0000 | [diff] [blame] | 320 | gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
|
gikidy | 670a64e | 2011-08-25 03:19:57 +0000 | [diff] [blame] | 321 | gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 322 | gEfiMdePkgTokenSpaceGuid.PcdMaximumGuidedExtractHandler|0x10
|
| 323 | gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxFvSupported|6
|
| 324 | gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeimPerFv|32
|
Jordan Justen | fd4ba54 | 2013-06-14 21:37:44 +0000 | [diff] [blame] | 325 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x2000
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 326 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxHardwareErrorVariableSize|0x8000
|
Jordan Justen | 9a08997 | 2013-11-12 18:34:20 +0000 | [diff] [blame] | 327 | gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0xe000
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 328 |
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 329 | gEfiMdeModulePkgTokenSpaceGuid.PcdVpdBaseAddress|0x0
|
| 330 |
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 331 | gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07
|
| 332 | gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x8000004F
|
vanjeff | c6efcc2 | 2010-09-12 06:46:55 +0000 | [diff] [blame] | 333 | !ifdef $(SOURCE_DEBUG_ENABLE)
|
| 334 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x17
|
| 335 | !else
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 336 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x2F
|
vanjeff | c6efcc2 | 2010-09-12 06:46:55 +0000 | [diff] [blame] | 337 | !endif
|
| 338 |
|
gikidy | 670a64e | 2011-08-25 03:19:57 +0000 | [diff] [blame] | 339 | !ifdef $(SOURCE_DEBUG_ENABLE)
|
vanjeff | c6efcc2 | 2010-09-12 06:46:55 +0000 | [diff] [blame] | 340 | gEfiSourceLevelDebugPkgTokenSpaceGuid.PcdDebugLoadImageMethod|0x2
|
gikidy | 670a64e | 2011-08-25 03:19:57 +0000 | [diff] [blame] | 341 | !endif
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 342 |
|
Jordan Justen | 9bef3cd | 2013-08-23 18:45:47 +0000 | [diff] [blame] | 343 | !ifndef $(USE_OLD_SHELL)
|
jljusten | 345a0c8 | 2011-06-26 18:58:41 +0000 | [diff] [blame] | 344 | gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdShellFile|{ 0x83, 0xA5, 0x04, 0x7C, 0x3E, 0x9E, 0x1C, 0x4F, 0xAD, 0x65, 0xE0, 0x52, 0x68, 0xD0, 0xB4, 0xD1 }
|
jljusten | 345a0c8 | 2011-06-26 18:58:41 +0000 | [diff] [blame] | 345 | !endif
|
| 346 |
|
leegrosenbaum | 171ea2e | 2012-05-23 00:22:50 +0000 | [diff] [blame] | 347 | [PcdsFixedAtBuild.X64]
|
| 348 | !if $(SECURE_BOOT_ENABLE) == TRUE
|
| 349 | # override the default values from SecurityPkg to ensure images from all sources are verified in secure boot
|
Fu Siyuan | db44ea6 | 2013-08-28 09:06:40 +0000 | [diff] [blame] | 350 | gEfiSecurityPkgTokenSpaceGuid.PcdOptionRomImageVerificationPolicy|0x04
|
| 351 | gEfiSecurityPkgTokenSpaceGuid.PcdFixedMediaImageVerificationPolicy|0x04
|
| 352 | gEfiSecurityPkgTokenSpaceGuid.PcdRemovableMediaImageVerificationPolicy|0x04
|
leegrosenbaum | 171ea2e | 2012-05-23 00:22:50 +0000 | [diff] [blame] | 353 | !endif
|
| 354 |
|
jljusten | 7ca126f | 2012-09-12 07:19:39 +0000 | [diff] [blame] | 355 | # IRQs 5, 9, 10, 11 are level-triggered
|
| 356 | gPcAtChipsetPkgTokenSpaceGuid.Pcd8259LegacyModeEdgeLevel|0x0E20
|
| 357 |
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 358 | ################################################################################
|
| 359 | #
|
| 360 | # Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
|
| 361 | #
|
| 362 | ################################################################################
|
| 363 |
|
lgao4 | 7b202cb | 2010-02-23 23:58:38 +0000 | [diff] [blame] | 364 | [PcdsDynamicDefault]
|
jljusten | 77ba993 | 2009-09-07 20:18:17 +0000 | [diff] [blame] | 365 | gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvStoreReserved|0
|
jljusten | e313026 | 2011-01-16 03:32:47 +0000 | [diff] [blame] | 366 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64|0
|
jljusten | 27f58ea | 2009-09-26 07:15:51 +0000 | [diff] [blame] | 367 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0
|
| 368 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0
|
Wei Liu | 447d264 | 2013-12-08 01:36:25 +0000 | [diff] [blame] | 369 | gEfiMdeModulePkgTokenSpaceGuid.PcdPciDisableBusEnumeration|FALSE
|
Laszlo Ersek | c4341e3 | 2014-03-22 07:12:36 +0000 | [diff] [blame] | 370 | gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution|800
|
| 371 | gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution|600
|
Gabriel Somlo | d55004d | 2014-11-14 00:37:39 +0000 | [diff] [blame] | 372 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfHostBridgePciDevId|0
|
jljusten | 27f58ea | 2009-09-26 07:15:51 +0000 | [diff] [blame] | 373 |
|
Ruiyu Ni | 86a9c7a | 2015-05-06 03:27:42 +0000 | [diff] [blame] | 374 | gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|0
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 375 |
|
Laszlo Ersek | 848834c | 2014-11-06 14:21:21 +0000 | [diff] [blame] | 376 | # Set video resolution for text setup.
|
Ruiyu Ni | 86a9c7a | 2015-05-06 03:27:42 +0000 | [diff] [blame] | 377 | gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoHorizontalResolution|640
|
| 378 | gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution|480
|
Laszlo Ersek | 848834c | 2014-11-06 14:21:21 +0000 | [diff] [blame] | 379 |
|
Laszlo Ersek | 37baf06 | 2015-06-22 17:11:05 +0000 | [diff] [blame] | 380 | gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosVersion|0x0208
|
Laszlo Ersek | c3db5a8 | 2015-08-06 10:14:12 +0000 | [diff] [blame] | 381 | gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosDocRev|0x0
|
Laszlo Ersek | 6fbef93 | 2015-08-06 10:13:55 +0000 | [diff] [blame] | 382 | gUefiOvmfPkgTokenSpaceGuid.PcdQemuSmbiosValidated|FALSE
|
Laszlo Ersek | 37baf06 | 2015-06-22 17:11:05 +0000 | [diff] [blame] | 383 |
|
Laszlo Ersek | d26753f | 2015-09-15 08:35:03 +0000 | [diff] [blame] | 384 | # Noexec settings for DXE.
|
Laszlo Ersek | d20b06a | 2015-09-15 08:35:19 +0000 | [diff] [blame] | 385 | gEfiMdeModulePkgTokenSpaceGuid.PcdSetNxForStack|FALSE
|
Laszlo Ersek | c075d25 | 2015-09-15 08:35:08 +0000 | [diff] [blame] | 386 | gEfiMdeModulePkgTokenSpaceGuid.PcdPropertiesTableEnable|FALSE
|
Laszlo Ersek | d26753f | 2015-09-15 08:35:03 +0000 | [diff] [blame] | 387 |
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 388 | ################################################################################
|
| 389 | #
|
| 390 | # Components Section - list of all EDK II Modules needed by this Platform.
|
| 391 | #
|
| 392 | ################################################################################
|
| 393 | [Components.IA32]
|
Jordan Justen | 497cbb5 | 2014-08-18 23:04:00 +0000 | [diff] [blame] | 394 | OvmfPkg/ResetVector/ResetVector.inf
|
| 395 |
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 396 | #
|
| 397 | # SEC Phase modules
|
| 398 | #
|
jljusten | c1c2669 | 2010-01-04 16:17:59 +0000 | [diff] [blame] | 399 | OvmfPkg/Sec/SecMain.inf {
|
| 400 | <LibraryClasses>
|
| 401 | NULL|IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
|
| 402 | }
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 403 |
|
| 404 | #
|
| 405 | # PEI Phase modules
|
| 406 | #
|
| 407 | MdeModulePkg/Core/Pei/PeiMain.inf
|
| 408 | MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
|
| 409 | <LibraryClasses>
|
| 410 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
| 411 | }
|
| 412 | IntelFrameworkModulePkg/Universal/StatusCode/Pei/StatusCodePei.inf
|
Laszlo Ersek | d26753f | 2015-09-15 08:35:03 +0000 | [diff] [blame] | 413 | MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf {
|
| 414 | <LibraryClasses>
|
| 415 | PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
|
| 416 | }
|
jljusten | 77ba993 | 2009-09-07 20:18:17 +0000 | [diff] [blame] | 417 |
|
| 418 | OvmfPkg/PlatformPei/PlatformPei.inf {
|
| 419 | <LibraryClasses>
|
| 420 | PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
|
| 421 | }
|
Laszlo Ersek | 5fb6fc0 | 2014-03-04 08:03:06 +0000 | [diff] [blame] | 422 | UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf {
|
| 423 | <LibraryClasses>
|
| 424 | PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
|
| 425 | }
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 426 |
|
| 427 | [Components.X64]
|
| 428 | #
|
| 429 | # DXE Phase modules
|
| 430 | #
|
| 431 | MdeModulePkg/Core/Dxe/DxeMain.inf {
|
| 432 | <LibraryClasses>
|
| 433 | NULL|IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
|
Ruiyu Ni | 863986b | 2013-07-26 03:14:08 +0000 | [diff] [blame] | 434 | DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 435 | }
|
| 436 |
|
| 437 | IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/StatusCodeRuntimeDxe.inf
|
| 438 | MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
|
| 439 | <LibraryClasses>
|
| 440 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
| 441 | }
|
| 442 |
|
| 443 | MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
|
jljusten | 8cee3de | 2012-03-09 17:38:53 +0000 | [diff] [blame] | 444 |
|
| 445 | !if $(SECURE_BOOT_ENABLE) == TRUE
|
| 446 | MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf {
|
| 447 | <LibraryClasses>
|
| 448 | NULL|SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.inf
|
jljusten | 8cee3de | 2012-03-09 17:38:53 +0000 | [diff] [blame] | 449 | }
|
| 450 | !else
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 451 | MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
|
jljusten | 8cee3de | 2012-03-09 17:38:53 +0000 | [diff] [blame] | 452 | !endif
|
| 453 |
|
xli24 | e6d3b27 | 2009-12-25 06:36:10 +0000 | [diff] [blame] | 454 | MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 455 | PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf
|
eric_tian | 73cbc58 | 2009-12-08 05:31:19 +0000 | [diff] [blame] | 456 | UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 457 | UefiCpuPkg/CpuDxe/CpuDxe.inf
|
| 458 | PcAtChipsetPkg/8254TimerDxe/8254Timer.inf
|
Laszlo Ersek | d52bde1 | 2015-07-14 12:01:36 +0000 | [diff] [blame] | 459 | OvmfPkg/PciHostBridgeDxe/PciHostBridgeDxe.inf
|
Wei Liu | 447d264 | 2013-12-08 01:36:25 +0000 | [diff] [blame] | 460 | MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf {
|
| 461 | <LibraryClasses>
|
| 462 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 463 | }
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 464 | PcAtChipsetPkg/KbcResetDxe/Reset.inf
|
Gabriel Somlo | 170ef2d | 2014-11-14 00:38:17 +0000 | [diff] [blame] | 465 | MdeModulePkg/Universal/Metronome/Metronome.inf
|
| 466 | PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf
|
jljusten | c1c2669 | 2010-01-04 16:17:59 +0000 | [diff] [blame] | 467 | IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf {
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 468 | <LibraryClasses>
|
jljusten | 8016da2 | 2011-11-10 22:04:19 +0000 | [diff] [blame] | 469 | !ifdef $(CSM_ENABLE)
|
| 470 | NULL|OvmfPkg/Csm/CsmSupportLib/CsmSupportLib.inf
|
| 471 | !endif
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 472 | }
|
| 473 |
|
jljusten | efd82c5 | 2010-03-21 00:34:15 +0000 | [diff] [blame] | 474 | OvmfPkg/BlockMmioToBlockIoDxe/BlockIo.inf
|
Olivier Martin | 56f65ed | 2013-12-11 16:58:22 +0000 | [diff] [blame] | 475 | OvmfPkg/VirtioPciDeviceDxe/VirtioPciDeviceDxe.inf
|
jljusten | fd51d75 | 2012-10-08 07:32:59 +0000 | [diff] [blame] | 476 | OvmfPkg/VirtioBlkDxe/VirtioBlk.inf
|
jljusten | 37078a6 | 2012-10-18 17:07:48 +0000 | [diff] [blame] | 477 | OvmfPkg/VirtioScsiDxe/VirtioScsi.inf
|
Jordan Justen | 182eb45 | 2013-11-12 18:35:01 +0000 | [diff] [blame] | 478 | OvmfPkg/QemuFlashFvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf
|
Ard Biesheuvel | d9fdfd8 | 2015-02-28 20:33:11 +0000 | [diff] [blame] | 479 | OvmfPkg/XenIoPciDxe/XenIoPciDxe.inf
|
Anthony PERARD | e65e880 | 2014-10-29 06:48:50 +0000 | [diff] [blame] | 480 | OvmfPkg/XenBusDxe/XenBusDxe.inf
|
Anthony PERARD | de671da | 2014-10-29 06:51:42 +0000 | [diff] [blame] | 481 | OvmfPkg/XenPvBlkDxe/XenPvBlkDxe.inf
|
jljusten | 27f58ea | 2009-09-26 07:15:51 +0000 | [diff] [blame] | 482 | OvmfPkg/EmuVariableFvbRuntimeDxe/Fvb.inf {
|
| 483 | <LibraryClasses>
|
| 484 | PlatformFvbLib|OvmfPkg/Library/EmuVariableFvbLib/EmuVariableFvbLib.inf
|
| 485 | }
|
| 486 | MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
|
Star Zeng | dd0ad62 | 2015-08-25 03:02:46 +0000 | [diff] [blame] | 487 | MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf {
|
| 488 | <LibraryClasses>
|
| 489 | NULL|MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf
|
| 490 | }
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 491 | MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
|
| 492 | MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
|
| 493 | MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
|
| 494 | MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
|
| 495 | MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
|
Laszlo Ersek | c4341e3 | 2014-03-22 07:12:36 +0000 | [diff] [blame] | 496 | MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf {
|
| 497 | <LibraryClasses>
|
| 498 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 499 | }
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 500 | MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
|
Ruiyu Ni | 863986b | 2013-07-26 03:14:08 +0000 | [diff] [blame] | 501 | MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf {
|
| 502 | <LibraryClasses>
|
| 503 | DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
| 504 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
| 505 | }
|
jljusten | 86fef5b | 2009-06-30 15:57:29 +0000 | [diff] [blame] | 506 | MdeModulePkg/Universal/PrintDxe/PrintDxe.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 507 | MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
|
| 508 | MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
|
| 509 | MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
|
| 510 | MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
|
| 511 | MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
|
Reza Jelveh | b82802b | 2015-09-22 11:18:45 +0000 | [diff] [blame] | 512 | OvmfPkg/SataControllerDxe/SataControllerDxe.inf
|
| 513 | MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf
|
| 514 | MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 515 | MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
|
| 516 | MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
|
Eric Dong | 56af21c | 2013-08-12 02:24:32 +0000 | [diff] [blame] | 517 | MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
|
jljusten | 999a815 | 2011-01-21 16:50:47 +0000 | [diff] [blame] | 518 | MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 519 |
|
jljusten | eaf4f33 | 2011-04-12 15:08:51 +0000 | [diff] [blame] | 520 | OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf {
|
| 521 | <LibraryClasses>
|
| 522 | BltLib|OptionRomPkg/Library/FrameBufferBltLib/FrameBufferBltLib.inf
|
| 523 | }
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 524 |
|
| 525 | #
|
| 526 | # ISA Support
|
| 527 | #
|
| 528 | PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf
|
| 529 | IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf
|
| 530 | IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/IsaSerialDxe.inf
|
| 531 | IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf
|
| 532 | IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/IsaFloppyDxe.inf
|
| 533 |
|
| 534 | #
|
jljusten | fb51181 | 2011-08-13 22:54:37 +0000 | [diff] [blame] | 535 | # SMBIOS Support
|
| 536 | #
|
Laszlo Ersek | 98937dc | 2015-08-06 10:13:42 +0000 | [diff] [blame] | 537 | MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf {
|
| 538 | <LibraryClasses>
|
| 539 | NULL|OvmfPkg/Library/SmbiosVersionLib/DetectSmbiosVersionLib.inf
|
| 540 | }
|
jljusten | fb51181 | 2011-08-13 22:54:37 +0000 | [diff] [blame] | 541 | OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.inf
|
| 542 |
|
| 543 | #
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 544 | # ACPI Support
|
| 545 | #
|
| 546 | MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
|
jljusten | 7d2bd15 | 2012-05-30 23:15:00 +0000 | [diff] [blame] | 547 | OvmfPkg/AcpiPlatformDxe/AcpiPlatformDxe.inf
|
jljusten | 49ba944 | 2009-05-27 21:10:18 +0000 | [diff] [blame] | 548 | OvmfPkg/AcpiTables/AcpiTables.inf
|
Laszlo Ersek | 389cbce | 2014-03-04 08:03:38 +0000 | [diff] [blame] | 549 | OvmfPkg/AcpiS3SaveDxe/AcpiS3SaveDxe.inf
|
Laszlo Ersek | b017b1b | 2014-03-04 08:03:50 +0000 | [diff] [blame] | 550 | MdeModulePkg/Universal/Acpi/S3SaveStateDxe/S3SaveStateDxe.inf
|
Laszlo Ersek | 9390040 | 2014-03-04 08:04:13 +0000 | [diff] [blame] | 551 | MdeModulePkg/Universal/Acpi/BootScriptExecutorDxe/BootScriptExecutorDxe.inf
|
mdkinney | 7416f4e | 2010-07-26 18:07:19 +0000 | [diff] [blame] | 552 |
|
| 553 | #
|
| 554 | # Network Support
|
| 555 | #
|
mdkinney | 7416f4e | 2010-07-26 18:07:19 +0000 | [diff] [blame] | 556 | MdeModulePkg/Universal/Network/SnpDxe/SnpDxe.inf
|
| 557 | MdeModulePkg/Universal/Network/DpcDxe/DpcDxe.inf
|
| 558 | MdeModulePkg/Universal/Network/MnpDxe/MnpDxe.inf
|
| 559 | MdeModulePkg/Universal/Network/VlanConfigDxe/VlanConfigDxe.inf
|
| 560 | MdeModulePkg/Universal/Network/ArpDxe/ArpDxe.inf
|
| 561 | MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf
|
mdkinney | 7416f4e | 2010-07-26 18:07:19 +0000 | [diff] [blame] | 562 | MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Dxe.inf
|
| 563 | MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
|
mdkinney | 7416f4e | 2010-07-26 18:07:19 +0000 | [diff] [blame] | 564 | MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Dxe.inf
|
Gary Lin | 36c6413 | 2014-12-19 19:13:44 +0000 | [diff] [blame] | 565 | !if $(NETWORK_IP6_ENABLE) == TRUE
|
| 566 | NetworkPkg/Ip6Dxe/Ip6Dxe.inf
|
| 567 | NetworkPkg/TcpDxe/TcpDxe.inf
|
| 568 | NetworkPkg/Udp6Dxe/Udp6Dxe.inf
|
| 569 | NetworkPkg/Dhcp6Dxe/Dhcp6Dxe.inf
|
| 570 | NetworkPkg/Mtftp6Dxe/Mtftp6Dxe.inf
|
| 571 | NetworkPkg/UefiPxeBcDxe/UefiPxeBcDxe.inf
|
| 572 | !if $(SECURE_BOOT_ENABLE) == TRUE
|
| 573 | NetworkPkg/IScsiDxe/IScsiDxe.inf
|
| 574 | !else
|
| 575 | MdeModulePkg/Universal/Network/IScsiDxe/IScsiDxe.inf
|
| 576 | !endif
|
| 577 | !else
|
| 578 | MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Dxe.inf
|
mdkinney | 7416f4e | 2010-07-26 18:07:19 +0000 | [diff] [blame] | 579 | MdeModulePkg/Universal/Network/UefiPxeBcDxe/UefiPxeBcDxe.inf
|
| 580 | MdeModulePkg/Universal/Network/IScsiDxe/IScsiDxe.inf
|
Gary Lin | 36c6413 | 2014-12-19 19:13:44 +0000 | [diff] [blame] | 581 | !endif
|
Gary Ching-Pang Lin | ab44a6e | 2015-08-23 01:44:15 +0000 | [diff] [blame] | 582 | !if $(HTTP_BOOT_ENABLE) == TRUE
|
| 583 | NetworkPkg/DnsDxe/DnsDxe.inf
|
Gary Ching-Pang Lin | 1a85139 | 2015-08-28 08:12:42 +0000 | [diff] [blame] | 584 | NetworkPkg/HttpUtilitiesDxe/HttpUtilitiesDxe.inf
|
Gary Ching-Pang Lin | ab44a6e | 2015-08-23 01:44:15 +0000 | [diff] [blame] | 585 | NetworkPkg/HttpDxe/HttpDxe.inf
|
| 586 | NetworkPkg/HttpBootDxe/HttpBootDxe.inf
|
| 587 | !endif
|
Laszlo Ersek | 7a1f594 | 2013-06-14 07:41:13 +0000 | [diff] [blame] | 588 | OvmfPkg/VirtioNetDxe/VirtioNet.inf
|
jljusten | 152d9a6 | 2010-10-13 07:07:42 +0000 | [diff] [blame] | 589 |
|
jljusten | 689562c | 2010-12-31 07:55:38 +0000 | [diff] [blame] | 590 | #
|
| 591 | # Usb Support
|
| 592 | #
|
| 593 | MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf
|
| 594 | MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf
|
Laszlo Ersek | 47e57f4 | 2015-03-16 19:57:34 +0000 | [diff] [blame] | 595 | MdeModulePkg/Bus/Pci/XhciDxe/XhciDxe.inf
|
jljusten | 689562c | 2010-12-31 07:55:38 +0000 | [diff] [blame] | 596 | MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf
|
| 597 | MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf
|
| 598 | MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
|
| 599 |
|
jljusten | 4b3d663 | 2011-11-10 22:04:49 +0000 | [diff] [blame] | 600 | !ifdef $(CSM_ENABLE)
|
Paolo Bonzini | e04cca1 | 2014-03-31 20:36:15 +0000 | [diff] [blame] | 601 | IntelFrameworkModulePkg/Csm/BiosThunk/VideoDxe/VideoDxe.inf {
|
| 602 | <LibraryClasses>
|
| 603 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 604 | }
|
jljusten | 4b3d663 | 2011-11-10 22:04:49 +0000 | [diff] [blame] | 605 | IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBiosDxe.inf
|
| 606 | OvmfPkg/Csm/Csm16/Csm16.inf
|
| 607 | !endif
|
| 608 |
|
Jordan Justen | 9bef3cd | 2013-08-23 18:45:47 +0000 | [diff] [blame] | 609 | !ifndef $(USE_OLD_SHELL)
|
jljusten | 345a0c8 | 2011-06-26 18:58:41 +0000 | [diff] [blame] | 610 | ShellPkg/Application/Shell/Shell.inf {
|
| 611 | <LibraryClasses>
|
| 612 | ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
|
| 613 | NULL|ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf
|
| 614 | NULL|ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf
|
| 615 | NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
|
| 616 | NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
|
| 617 | NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
|
| 618 | NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
|
| 619 | NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
|
Laszlo Ersek | b2f88ff | 2015-09-25 17:22:58 +0000 | [diff] [blame] | 620 | NULL|ShellPkg/Library/UefiShellTftpCommandLib/UefiShellTftpCommandLib.inf
|
jljusten | 345a0c8 | 2011-06-26 18:58:41 +0000 | [diff] [blame] | 621 | HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
|
jljusten | 345a0c8 | 2011-06-26 18:58:41 +0000 | [diff] [blame] | 622 | ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf
|
Daryl McDaniel | ae591c1 | 2015-01-13 01:04:07 +0000 | [diff] [blame] | 623 | FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
|
| 624 | SortLib|MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf
|
jljusten | 345a0c8 | 2011-06-26 18:58:41 +0000 | [diff] [blame] | 625 | PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
|
| 626 | # SafeBlockIoLib|ShellPkg/Library/SafeBlockIoLib/SafeBlockIoLib.inf
|
| 627 | # SafeOpenProtocolLib|ShellPkg/Library/SafeOpenProtocolLib/SafeOpenProtocolLib.inf
|
Laszlo Ersek | 9fc9f4d | 2014-09-11 19:11:37 +0000 | [diff] [blame] | 628 | BcfgCommandLib|ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.inf
|
jljusten | 345a0c8 | 2011-06-26 18:58:41 +0000 | [diff] [blame] | 629 |
|
| 630 | <PcdsFixedAtBuild>
|
| 631 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xFF
|
| 632 | gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
|
| 633 | gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|8000
|
| 634 | }
|
| 635 | !endif
|
| 636 |
|
jljusten | 8cee3de | 2012-03-09 17:38:53 +0000 | [diff] [blame] | 637 | !if $(SECURE_BOOT_ENABLE) == TRUE
|
Laszlo Ersek | 8714a63 | 2014-10-02 08:08:05 +0000 | [diff] [blame] | 638 | SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigDxe.inf
|
jljusten | 8cee3de | 2012-03-09 17:38:53 +0000 | [diff] [blame] | 639 | !endif
|
Laszlo Ersek | d945a8b | 2014-03-22 07:12:55 +0000 | [diff] [blame] | 640 |
|
| 641 | OvmfPkg/PlatformDxe/Platform.inf
|