andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 1 | ## @file
|
| 2 | #
|
andrewfish | 5dcda29 | 2011-06-17 16:18:14 +0000 | [diff] [blame] | 3 | # UEFI/PI Emulation Platform with UEFI HII interface supported.
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 4 | #
|
| 5 | # The Emulation Platform can be used to debug individual modules, prior to creating
|
| 6 | # a real platform. This also provides an example for how an DSC is created.
|
| 7 | # Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
| 8 | # Portions copyright (c) 2010 - 2011, Apple Inc. All rights reserved.<BR>
|
| 9 | #
|
| 10 | # This program and the accompanying materials
|
| 11 | # are licensed and made available under the terms and conditions of the BSD License
|
| 12 | # which accompanies this distribution. The full text of the license may be found at
|
| 13 | # http://opensource.org/licenses/bsd-license.php
|
| 14 | #
|
| 15 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
| 16 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
| 17 | #
|
| 18 | ##
|
| 19 |
|
| 20 | ################################################################################
|
| 21 | #
|
| 22 | # Defines Section - statements that will be processed to create a Makefile.
|
| 23 | #
|
| 24 | ################################################################################
|
| 25 | [Defines]
|
| 26 | PLATFORM_NAME = EmuUnix
|
| 27 | PLATFORM_GUID = 05FD064D-1073-E844-936C-A0E16317107D
|
| 28 | PLATFORM_VERSION = 0.3
|
| 29 | DSC_ SPECIFICATION = 0x00010005
|
andrewfish | e7523e0 | 2011-06-18 22:23:46 +0000 | [diff] [blame] | 30 | !if $(BUILD_32)
|
| 31 | OUTPUT_DIRECTORY = Build/EmuUnixIa32
|
| 32 | !else
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 33 | OUTPUT_DIRECTORY = Build/EmuUnixX64
|
andrewfish | e7523e0 | 2011-06-18 22:23:46 +0000 | [diff] [blame] | 34 | !endif
|
| 35 |
|
andrewfish | 112a857 | 2011-06-18 17:53:31 +0000 | [diff] [blame] | 36 | SUPPORTED_ARCHITECTURES = X64|IA32
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 37 | BUILD_TARGETS = DEBUG|RELEASE
|
| 38 | SKUID_IDENTIFIER = DEFAULT
|
| 39 | FLASH_DEFINITION = InOsEmuPkg/Unix/UnixX64.fdf
|
| 40 |
|
| 41 | ################################################################################
|
| 42 | #
|
| 43 | # SKU Identification section - list of all SKU IDs supported by this Platform.
|
| 44 | #
|
| 45 | ################################################################################
|
| 46 | [SkuIds]
|
| 47 | 0|DEFAULT
|
| 48 |
|
| 49 | ################################################################################
|
| 50 | #
|
| 51 | # Library Class section - list of all Library Classes needed by this Platform.
|
| 52 | #
|
| 53 | ################################################################################
|
| 54 | [LibraryClasses]
|
| 55 | #
|
| 56 | # Entry point
|
| 57 | #
|
| 58 | PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
|
| 59 | PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
|
| 60 | DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
|
| 61 | UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
|
| 62 | UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
|
| 63 | #
|
| 64 | # Basic
|
| 65 | #
|
| 66 | BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
|
| 67 | SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
|
| 68 | PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
|
| 69 | CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
|
| 70 | PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
|
| 71 | PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
|
| 72 | BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
|
| 73 |
|
| 74 | #
|
| 75 | # UEFI & PI
|
| 76 | #
|
| 77 | UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
| 78 | UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
| 79 | UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
|
| 80 | UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
|
| 81 | UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
|
| 82 | HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
|
| 83 | DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
| 84 | UefiDecompressLib|IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.inf
|
| 85 |
|
| 86 | PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
|
| 87 | DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
|
| 88 | DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
| 89 | #
|
| 90 | # Generic Modules
|
| 91 | #
|
| 92 | UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
|
| 93 | NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf
|
| 94 | IpIoLib|MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf
|
| 95 | UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf
|
| 96 | DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf
|
| 97 | OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
|
| 98 | GenericBdsLib|IntelFrameworkModulePkg/Library/GenericBdsLib/GenericBdsLib.inf
|
| 99 | SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
|
| 100 | TimerLib|MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf
|
| 101 | SerialPortLib|MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.inf
|
| 102 | CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
|
| 103 | #
|
| 104 | # Platform
|
| 105 | #
|
| 106 | PlatformBdsLib|InOsEmuPkg/Library/EmuBdsLib/EmuBdsLib.inf
|
| 107 | KeyMapLib|InOsEmuPkg/Library/KeyMapLibNull/KeyMapLibNull.inf
|
| 108 |
|
| 109 | #
|
| 110 | # Misc
|
| 111 | #
|
| 112 | DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
|
| 113 | PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
|
| 114 | DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
|
andrewfish | 946bfba | 2011-06-08 21:52:21 +0000 | [diff] [blame] | 115 | PeiServicesTablePointerLib|InOsEmuPkg/Library/PeiServicesTablePointerLibMagicPage/PeiServicesTablePointerLibMagicPage.inf
|
andrewfish | 1453e77 | 2011-06-19 18:59:00 +0000 | [diff] [blame] | 116 | DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
|
| 117 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 118 |
|
andrewfish | 65e3f33 | 2011-05-14 16:00:22 +0000 | [diff] [blame] | 119 | [LibraryClasses.common.SEC]
|
| 120 | PeiServicesLib|InOsEmuPkg/Library/SecPeiServicesLib/SecPeiServicesLib.inf
|
| 121 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
| 122 | PeCoffGetEntryPointLib|InOsEmuPkg/Library/PeiEmuPeCoffGetEntryPointLib/PeiEmuPeCoffGetEntryPointLib.inf
|
| 123 | PeCoffExtraActionLib|InOsEmuPkg/Library/PeiEmuPeCoffExtraActionLib/PeiEmuPeCoffExtraActionLib.inf
|
| 124 | SerialPortLib|InOsEmuPkg/Library/PeiEmuSerialPortLib/PeiEmuSerialPortLib.inf
|
| 125 | PpiListLib|InOsEmuPkg/Library/SecPpiListLib/SecPpiListLib.inf
|
andrewfish | 1453e77 | 2011-06-19 18:59:00 +0000 | [diff] [blame] | 126 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
andrewfish | 65e3f33 | 2011-05-14 16:00:22 +0000 | [diff] [blame] | 127 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 128 | [LibraryClasses.common.USER_DEFINED, LibraryClasses.common.BASE]
|
| 129 | DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
|
| 130 | PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
|
| 131 | MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
| 132 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
andrewfish | 65e3f33 | 2011-05-14 16:00:22 +0000 | [diff] [blame] | 133 | PpiListLib|InOsEmuPkg/Library/SecPpiListLib/SecPpiListLib.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 134 | ThunkPpiList|InOsEmuPkg/Library/ThunkPpiList/ThunkPpiList.inf
|
| 135 | ThunkProtocolList|InOsEmuPkg/Library/ThunkProtocolList/ThunkProtocolList.inf
|
andrewfish | 65e3f33 | 2011-05-14 16:00:22 +0000 | [diff] [blame] | 136 | PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
|
| 137 | PpiListLib|InOsEmuPkg/Library/SecPpiListLib/SecPpiListLib.inf
|
| 138 | PeiServicesLib|InOsEmuPkg/Library/SecPeiServicesLib/SecPeiServicesLib.inf
|
| 139 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 140 |
|
| 141 | [LibraryClasses.common.PEIM, LibraryClasses.common.PEI_CORE]
|
| 142 | HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
|
| 143 | MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
| 144 | ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
| 145 | PeCoffGetEntryPointLib|InOsEmuPkg/Library/PeiEmuPeCoffGetEntryPointLib/PeiEmuPeCoffGetEntryPointLib.inf
|
| 146 | PeCoffExtraActionLib|InOsEmuPkg/Library/PeiEmuPeCoffExtraActionLib/PeiEmuPeCoffExtraActionLib.inf
|
| 147 | ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf
|
andrewfish | 65e3f33 | 2011-05-14 16:00:22 +0000 | [diff] [blame] | 148 | SerialPortLib|InOsEmuPkg/Library/PeiEmuSerialPortLib/PeiEmuSerialPortLib.inf
|
andrewfish | 1453e77 | 2011-06-19 18:59:00 +0000 | [diff] [blame] | 149 | ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 150 |
|
| 151 | [LibraryClasses.common.PEI_CORE]
|
| 152 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 153 |
|
| 154 | [LibraryClasses.common.PEIM]
|
| 155 | PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 156 |
|
| 157 | [LibraryClasses.common.DXE_CORE]
|
| 158 | HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
|
| 159 | MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
|
| 160 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
| 161 | PeCoffExtraActionLib|InOsEmuPkg/Library/DxeEmuPeCoffExtraActionLib/DxeEmuPeCoffExtraActionLib.inf
|
| 162 | ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
|
| 163 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
| 164 |
|
| 165 | [LibraryClasses.common.DXE_RUNTIME_DRIVER, LibraryClasses.common.UEFI_DRIVER, LibraryClasses.common.DXE_DRIVER, LibraryClasses.common.UEFI_APPLICATION]
|
| 166 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
| 167 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 168 | MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
|
| 169 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
| 170 | EmuThunkLib|InOsEmuPkg/Library/DxeEmuLib/DxeEmuLib.inf
|
| 171 | PeCoffExtraActionLib|InOsEmuPkg/Library/DxeEmuPeCoffExtraActionLib/DxeEmuPeCoffExtraActionLib.inf
|
andrewfish | 1453e77 | 2011-06-19 18:59:00 +0000 | [diff] [blame] | 172 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 173 |
|
| 174 | [LibraryClasses.common.UEFI_DRIVER]
|
| 175 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 176 |
|
| 177 | [LibraryClasses.common.UEFI_APPLICATION]
|
| 178 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
| 179 |
|
| 180 |
|
| 181 | ################################################################################
|
| 182 | #
|
| 183 | # Pcd Section - list of all EDK II PCD Entries defined by this Platform.
|
| 184 | #
|
| 185 | ################################################################################
|
| 186 | [PcdsFeatureFlag]
|
| 187 | gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE
|
| 188 | gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|TRUE
|
| 189 | gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreImageLoaderSearchTeSectionFirst|FALSE
|
| 190 | gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE
|
| 191 |
|
| 192 | [PcdsFixedAtBuild]
|
| 193 | gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000040
|
| 194 | gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x0f
|
| 195 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x1f
|
| 196 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizeNonPopulateCapsule|0x0
|
| 197 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizePopulateCapsule|0x0
|
| 198 |
|
| 199 | gInOsEmuPkgTokenSpaceGuid.PcdEmuFirmwareFdSize|0x002a0000
|
| 200 | gInOsEmuPkgTokenSpaceGuid.PcdEmuFirmwareBlockSize|0x10000
|
jljusten | 7d6cc71 | 2011-05-15 17:22:50 +0000 | [diff] [blame] | 201 | gInOsEmuPkgTokenSpaceGuid.PcdEmuFirmwareVolume|L"../FV/FV_RECOVERY.fd"
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 202 |
|
| 203 | gInOsEmuPkgTokenSpaceGuid.PcdEmuMemorySizeForSecMain|L"64!64"
|
jljusten | 72a44be | 2011-05-15 17:23:33 +0000 | [diff] [blame] | 204 |
|
| 205 | !if $(BUILD_NEW_SHELL)
|
| 206 | gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdShellFile|{ 0x83, 0xA5, 0x04, 0x7C, 0x3E, 0x9E, 0x1C, 0x4F, 0xAD, 0x65, 0xE0, 0x52, 0x68, 0xD0, 0xB4, 0xD1 }
|
| 207 | !else
|
| 208 | !if $(USE_NEW_SHELL)
|
| 209 | gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdShellFile|{ 0x83, 0xA5, 0x04, 0x7C, 0x3E, 0x9E, 0x1C, 0x4F, 0xAD, 0x65, 0xE0, 0x52, 0x68, 0xD0, 0xB4, 0xD1 }
|
| 210 | !endif
|
| 211 | !endif
|
| 212 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 213 | #define BOOT_WITH_FULL_CONFIGURATION 0x00
|
| 214 | #define BOOT_WITH_MINIMAL_CONFIGURATION 0x01
|
| 215 | #define BOOT_ASSUMING_NO_CONFIGURATION_CHANGES 0x02
|
| 216 | #define BOOT_WITH_FULL_CONFIGURATION_PLUS_DIAGNOSTICS 0x03
|
| 217 | #define BOOT_WITH_DEFAULT_SETTINGS 0x04
|
| 218 | #define BOOT_ON_S4_RESUME 0x05
|
| 219 | #define BOOT_ON_S5_RESUME 0x06
|
| 220 | #define BOOT_ON_S2_RESUME 0x10
|
| 221 | #define BOOT_ON_S3_RESUME 0x11
|
| 222 | #define BOOT_ON_FLASH_UPDATE 0x12
|
| 223 | #define BOOT_IN_RECOVERY_MODE 0x20
|
| 224 | gInOsEmuPkgTokenSpaceGuid.PcdEmuBootMode|0
|
| 225 |
|
andrewfish | 8b6d0c0 | 2011-05-17 03:48:27 +0000 | [diff] [blame] | 226 | gInOsEmuPkgTokenSpaceGuid.PcdEmuApCount|L"1"
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 227 |
|
andrewfish | 5dcda29 | 2011-06-17 16:18:14 +0000 | [diff] [blame] | 228 | # For a CD-ROM/DVD use L"diag.dmg:RO:2048"
|
andrewfish | 033d0e5 | 2011-06-03 03:31:32 +0000 | [diff] [blame] | 229 | gInOsEmuPkgTokenSpaceGuid.PcdEmuVirtualDisk|L"disk.dmg:FW"
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 230 | gInOsEmuPkgTokenSpaceGuid.PcdEmuGop|L"GOP Window"
|
jljusten | a80e595 | 2011-05-16 04:47:14 +0000 | [diff] [blame] | 231 | gInOsEmuPkgTokenSpaceGuid.PcdEmuFileSystem|L".!../../../../EdkShellBinPkg/Bin"
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 232 | gInOsEmuPkgTokenSpaceGuid.PcdEmuSerialPort|L"/dev/ttyS0"
|
| 233 | gInOsEmuPkgTokenSpaceGuid.PcdEmuNetworkInterface|L"en0"
|
| 234 |
|
| 235 | gInOsEmuPkgTokenSpaceGuid.PcdEmuCpuModel|L"Intel(R) Processor Model"
|
| 236 | gInOsEmuPkgTokenSpaceGuid.PcdEmuCpuSpeed|L"3000"
|
| 237 |
|
andrewfish | 7e284ac | 2011-06-08 02:34:12 +0000 | [diff] [blame] | 238 | # 0-PCANSI, 1-VT100, 2-VT00+, 3-UTF8
|
| 239 | gEfiMdePkgTokenSpaceGuid.PcdDefaultTerminalType|1
|
| 240 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 241 | ################################################################################
|
| 242 | #
|
| 243 | # Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
|
| 244 | #
|
| 245 | ################################################################################
|
| 246 |
|
| 247 | [PcdsDynamicDefault.common.DEFAULT]
|
| 248 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64|0
|
| 249 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64|0
|
| 250 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64|0
|
| 251 |
|
| 252 | [PcdsDynamicHii.common.DEFAULT]
|
| 253 | gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn|L"Setup"|gEmuSystemConfigGuid|0x0|80
|
| 254 | gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow|L"Setup"|gEmuSystemConfigGuid|0x4|25
|
| 255 | gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPlatformBootTimeOut|L"Timeout"|gEfiGlobalVariableGuid|0x0|10
|
| 256 |
|
| 257 |
|
| 258 | ###################################################################################################
|
| 259 | #
|
| 260 | # Components Section - list of the modules and components that will be processed by compilation
|
| 261 | # tools and the EDK II tools to generate PE32/PE32+/Coff image files.
|
| 262 | #
|
| 263 | # Note: The EDK II DSC file is not used to specify how compiled binary images get placed
|
| 264 | # into firmware volume images. This section is just a list of modules to compile from
|
| 265 | # source into UEFI-compliant binaries.
|
| 266 | # It is the FDF file that contains information on combining binary files into firmware
|
| 267 | # volume images, whose concept is beyond UEFI and is described in PI specification.
|
| 268 | # Binary modules do not need to be listed in this section, as they should be
|
| 269 | # specified in the FDF file. For example: Shell binary (Shell_Full.efi), FAT binary (Fat.efi),
|
| 270 | # Logo (Logo.bmp), and etc.
|
| 271 | # There may also be modules listed in this section that are not required in the FDF file,
|
| 272 | # When a module listed here is excluded from FDF file, then UEFI-compliant binary will be
|
| 273 | # generated for it, but the binary will not be put into any firmware volume.
|
| 274 | #
|
| 275 | ###################################################################################################
|
andrewfish | 112a857 | 2011-06-18 17:53:31 +0000 | [diff] [blame] | 276 |
|
| 277 | [Components.X64]
|
| 278 | MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf {
|
| 279 | <LibraryClasses>
|
| 280 | # turn off CR3 write so that DXE IPL will not crash emulator
|
| 281 | BaseLib|UnixPkg/Library/UnixBaseLib/UnixBaseLib.inf
|
| 282 | }
|
| 283 |
|
| 284 | [Components.IA32]
|
| 285 | MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
|
| 286 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 287 | [Components]
|
jljusten | 53a6813 | 2011-06-20 21:58:22 +0000 | [diff] [blame^] | 288 | !ifdef $(UNIX_SEC_BUILD)
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 289 | ##
|
andrewfish | 5dcda29 | 2011-06-17 16:18:14 +0000 | [diff] [blame] | 290 | # Emulator, OS POSIX application
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 291 | ##
|
| 292 | InOsEmuPkg/Unix/Sec/SecMain.inf
|
jljusten | 53a6813 | 2011-06-20 21:58:22 +0000 | [diff] [blame^] | 293 | !endif
|
| 294 |
|
| 295 | !ifndef $(SKIP_MAIN_BUILD)
|
andrewfish | 65e3f33 | 2011-05-14 16:00:22 +0000 | [diff] [blame] | 296 | #
|
| 297 | # Generic SEC
|
| 298 | #
|
| 299 | InOsEmuPkg/Sec/Sec.inf
|
| 300 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 301 | ##
|
| 302 | # PEI Phase modules
|
| 303 | ##
|
| 304 | MdeModulePkg/Core/Pei/PeiMain.inf
|
| 305 | MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
|
| 306 | <LibraryClasses>
|
| 307 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
| 308 | }
|
| 309 | MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf
|
andrewfish | 65e3f33 | 2011-05-14 16:00:22 +0000 | [diff] [blame] | 310 | MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 311 |
|
| 312 | IntelFrameworkModulePkg/Universal/StatusCode/Pei/StatusCodePei.inf
|
| 313 | InOsEmuPkg/BootModePei/BootModePei.inf
|
| 314 | MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
|
| 315 | InOsEmuPkg/AutoScanPei/AutoScanPei.inf
|
| 316 | InOsEmuPkg/FirmwareVolumePei/FirmwareVolumePei.inf
|
| 317 | InOsEmuPkg/FlashMapPei/FlashMapPei.inf
|
| 318 | InOsEmuPkg/ThunkPpiToProtocolPei/ThunkPpiToProtocolPei.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 319 |
|
| 320 | ##
|
| 321 | # DXE Phase modules
|
| 322 | ##
|
| 323 | MdeModulePkg/Core/Dxe/DxeMain.inf {
|
| 324 | <LibraryClasses>
|
andrewfish | 1453e77 | 2011-06-19 18:59:00 +0000 | [diff] [blame] | 325 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 326 | NULL|MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/DxeCrc32GuidedSectionExtractLib.inf
|
| 327 | NULL|IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
|
| 328 | }
|
| 329 | MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
|
| 330 | <LibraryClasses>
|
| 331 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
| 332 | }
|
| 333 |
|
| 334 | MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf
|
| 335 | MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf {
|
| 336 | <LibraryClasses>
|
andrewfish | 1453e77 | 2011-06-19 18:59:00 +0000 | [diff] [blame] | 337 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
andrewfish | 7e284ac | 2011-06-08 02:34:12 +0000 | [diff] [blame] | 338 | SerialPortLib|InOsEmuPkg/Library/DxeEmuStdErrSerialPortLib/DxeEmuStdErrSerialPortLib.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 339 | }
|
| 340 |
|
| 341 | InOsEmuPkg/MetronomeDxe/Metronome.inf
|
| 342 | InOsEmuPkg/RealTimeClockRuntimeDxe/RealTimeClock.inf
|
| 343 | InOsEmuPkg/ResetRuntimeDxe/Reset.inf
|
| 344 | MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
|
| 345 | InOsEmuPkg/FvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf
|
| 346 | MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
|
| 347 | MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
|
| 348 | MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
|
| 349 | InOsEmuPkg/EmuThunkDxe/EmuThunk.inf
|
| 350 | InOsEmuPkg/CpuRuntimeDxe/Cpu.inf
|
| 351 | MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
|
| 352 | InOsEmuPkg/MiscSubClassPlatformDxe/MiscSubClassDriver.inf
|
| 353 | InOsEmuPkg/TimerDxe/Timer.inf
|
| 354 |
|
| 355 |
|
| 356 | MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
|
| 357 | MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
|
| 358 | MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
|
| 359 | MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
|
| 360 | MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
|
| 361 | MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
|
| 362 | MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
|
andrewfish | 7e284ac | 2011-06-08 02:34:12 +0000 | [diff] [blame] | 363 | EmbeddedPkg/SerialDxe/SerialDxe.inf {
|
| 364 | <LibraryClasses>
|
| 365 | DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
|
| 366 | SerialPortLib|InOsEmuPkg/Library/DxeEmuSerialPortLib/DxeEmuSerialPortLib.inf
|
| 367 | }
|
| 368 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 369 | MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
|
| 370 | IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf
|
andrewfish | 2b59fcd | 2011-06-15 18:51:30 +0000 | [diff] [blame] | 371 | MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
|
andrewfish | 5dcda29 | 2011-06-17 16:18:14 +0000 | [diff] [blame] | 372 | #{
|
| 373 | # <LibraryClasses>
|
| 374 | # NULL|InOsEmuPkg/Library/DevicePathTextLib/DevicePathTextLib.inf
|
| 375 | #}
|
andrewfish | 2b59fcd | 2011-06-15 18:51:30 +0000 | [diff] [blame] | 376 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 377 | MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
|
| 378 | MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
|
| 379 | MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
|
| 380 | MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
|
| 381 | MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
|
| 382 | MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
|
| 383 | IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/IdeBusDxe.inf
|
| 384 |
|
| 385 | InOsEmuPkg/EmuBusDriverDxe/EmuBusDriverDxe.inf
|
| 386 | InOsEmuPkg/EmuGopDxe/EmuGopDxe.inf
|
| 387 | InOsEmuPkg/EmuSimpleFileSystemDxe/EmuSimpleFileSystemDxe.inf
|
andrewfish | d59326d | 2011-05-31 20:23:36 +0000 | [diff] [blame] | 388 | InOsEmuPkg/EmuBlockIoDxe/EmuBlockIoDxe.inf
|
andrewfish | 572287f | 2011-06-09 19:31:56 +0000 | [diff] [blame] | 389 | InOsEmuPkg/EmuSnpDxe/EmuSnpDxe.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 390 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 391 | MdeModulePkg/Application/HelloWorld/HelloWorld.inf
|
| 392 |
|
| 393 | #
|
| 394 | # Network stack drivers
|
| 395 | #
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 396 | MdeModulePkg/Universal/Network/DpcDxe/DpcDxe.inf
|
| 397 | MdeModulePkg/Universal/Network/ArpDxe/ArpDxe.inf
|
| 398 | MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf
|
| 399 | MdeModulePkg/Universal/Network/Ip4ConfigDxe/Ip4ConfigDxe.inf
|
| 400 | MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Dxe.inf
|
| 401 | MdeModulePkg/Universal/Network/MnpDxe/MnpDxe.inf
|
| 402 | MdeModulePkg/Universal/Network/VlanConfigDxe/VlanConfigDxe.inf
|
| 403 | MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
|
| 404 | MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Dxe.inf
|
| 405 | MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Dxe.inf
|
| 406 |
|
| 407 | MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
|
| 408 | MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
|
| 409 | MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
|
| 410 | MdeModulePkg/Universal/PrintDxe/PrintDxe.inf
|
| 411 | MdeModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf {
|
| 412 | <LibraryClasses>
|
| 413 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
| 414 | }
|
| 415 |
|
jljusten | 72a44be | 2011-05-15 17:23:33 +0000 | [diff] [blame] | 416 | !if $(BUILD_FAT)
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 417 | FatPkg/EnhancedFatDxe/Fat.inf
|
| 418 | !endif
|
jljusten | 72a44be | 2011-05-15 17:23:33 +0000 | [diff] [blame] | 419 |
|
| 420 | !if $(BUILD_NEW_SHELL)
|
| 421 | ShellPkg/Application/Shell/Shell.inf {
|
| 422 | <LibraryClasses>
|
| 423 | ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
|
| 424 | NULL|ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf
|
| 425 | NULL|ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf
|
| 426 | NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
|
| 427 | NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
|
| 428 | NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
|
| 429 | NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
|
| 430 | NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
|
| 431 | HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
|
| 432 | FileHandleLib|ShellPkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
|
| 433 | ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf
|
| 434 | SortLib|ShellPkg/Library/UefiSortLib/UefiSortLib.inf
|
| 435 | PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
|
andrewfish | 5dcda29 | 2011-06-17 16:18:14 +0000 | [diff] [blame] | 436 | # SafeBlockIoLib|ShellPkg/Library/SafeBlockIoLib/SafeBlockIoLib.inf
|
| 437 | # SafeOpenProtocolLib|ShellPkg/Library/SafeOpenProtocolLib/SafeOpenProtocolLib.inf
|
| 438 |
|
jljusten | 72a44be | 2011-05-15 17:23:33 +0000 | [diff] [blame] | 439 | <PcdsFixedAtBuild>
|
| 440 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xFF
|
| 441 | gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
|
| 442 | gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|8000
|
| 443 | }
|
| 444 | !endif
|
| 445 |
|
jljusten | 53a6813 | 2011-06-20 21:58:22 +0000 | [diff] [blame^] | 446 | !endif
|
| 447 |
|