andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 1 | ## @file
|
andrewfish | 5dcda29 | 2011-06-17 16:18:14 +0000 | [diff] [blame] | 2 | # UEFI/PI Emulation Platform with UEFI HII interface supported.
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 3 | #
|
| 4 | # The Emulation Platform can be used to debug individual modules, prior to creating
|
jljusten | e23e488 | 2011-06-29 05:13:54 +0000 | [diff] [blame] | 5 | # a real platform. This also provides an example for how an DSC is created.
|
| 6 | #
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 7 | # Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
| 8 | # Portions copyright (c) 2010 - 2011, Apple Inc. All rights reserved.<BR>
|
| 9 | #
|
jljusten | e23e488 | 2011-06-29 05:13:54 +0000 | [diff] [blame] | 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
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 14 | #
|
jljusten | e23e488 | 2011-06-29 05:13:54 +0000 | [diff] [blame] | 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.
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 17 | #
|
| 18 | ##
|
| 19 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 20 | [Defines]
|
jljusten | e23e488 | 2011-06-29 05:13:54 +0000 | [diff] [blame] | 21 | PLATFORM_NAME = EmulatorPkg
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 22 | PLATFORM_GUID = 05FD064D-1073-E844-936C-A0E16317107D
|
| 23 | PLATFORM_VERSION = 0.3
|
jljusten | 52cb711 | 2011-10-31 15:58:29 +0000 | [diff] [blame] | 24 | DSC_SPECIFICATION = 0x00010005
|
andrewfish | e7523e0 | 2011-06-18 22:23:46 +0000 | [diff] [blame] | 25 | !if $(BUILD_32)
|
jljusten | e23e488 | 2011-06-29 05:13:54 +0000 | [diff] [blame] | 26 | OUTPUT_DIRECTORY = Build/Emulator32
|
andrewfish | e7523e0 | 2011-06-18 22:23:46 +0000 | [diff] [blame] | 27 | !else
|
jljusten | e23e488 | 2011-06-29 05:13:54 +0000 | [diff] [blame] | 28 | OUTPUT_DIRECTORY = Build/Emulator
|
andrewfish | e7523e0 | 2011-06-18 22:23:46 +0000 | [diff] [blame] | 29 | !endif
|
| 30 |
|
andrewfish | 112a857 | 2011-06-18 17:53:31 +0000 | [diff] [blame] | 31 | SUPPORTED_ARCHITECTURES = X64|IA32
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 32 | BUILD_TARGETS = DEBUG|RELEASE
|
| 33 | SKUID_IDENTIFIER = DEFAULT
|
jljusten | e23e488 | 2011-06-29 05:13:54 +0000 | [diff] [blame] | 34 | FLASH_DEFINITION = EmulatorPkg/EmulatorPkg.fdf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 35 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 36 | [SkuIds]
|
| 37 | 0|DEFAULT
|
| 38 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 39 | [LibraryClasses]
|
| 40 | #
|
| 41 | # Entry point
|
| 42 | #
|
| 43 | PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
|
| 44 | PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
|
| 45 | DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
|
| 46 | UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
|
| 47 | UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
|
| 48 | #
|
| 49 | # Basic
|
| 50 | #
|
| 51 | BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
|
| 52 | SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
|
| 53 | PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
|
| 54 | CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
|
| 55 | PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
|
| 56 | PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
|
| 57 | BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
|
| 58 |
|
| 59 | #
|
| 60 | # UEFI & PI
|
| 61 | #
|
| 62 | UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
| 63 | UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
| 64 | UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
|
| 65 | UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
|
| 66 | UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
|
| 67 | HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
|
| 68 | DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
| 69 | UefiDecompressLib|IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.inf
|
| 70 |
|
| 71 | PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
|
| 72 | DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
|
| 73 | DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
andrewfish | 63f9b9b | 2012-01-30 18:57:30 +0000 | [diff] [blame] | 74 | SmbiosLib|EmulatorPkg/Library/SmbiosLib/SmbiosLib.inf
|
| 75 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 76 | #
|
| 77 | # Generic Modules
|
| 78 | #
|
| 79 | UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
|
| 80 | NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf
|
| 81 | IpIoLib|MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf
|
| 82 | UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf
|
| 83 | DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf
|
| 84 | OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
|
| 85 | GenericBdsLib|IntelFrameworkModulePkg/Library/GenericBdsLib/GenericBdsLib.inf
|
| 86 | SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
|
| 87 | TimerLib|MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf
|
| 88 | SerialPortLib|MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.inf
|
| 89 | CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
|
| 90 | #
|
| 91 | # Platform
|
| 92 | #
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 93 | PlatformBdsLib|EmulatorPkg/Library/EmuBdsLib/EmuBdsLib.inf
|
| 94 | KeyMapLib|EmulatorPkg/Library/KeyMapLibNull/KeyMapLibNull.inf
|
jljusten | d18d8a1 | 2011-06-28 16:50:26 +0000 | [diff] [blame] | 95 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 96 | #
|
| 97 | # Misc
|
| 98 | #
|
| 99 | DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
|
| 100 | PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
|
| 101 | DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 102 | PeiServicesTablePointerLib|EmulatorPkg/Library/PeiServicesTablePointerLibMagicPage/PeiServicesTablePointerLibMagicPage.inf
|
andrewfish | 1453e77 | 2011-06-19 18:59:00 +0000 | [diff] [blame] | 103 | DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
|
li-elvin | 7f5d742 | 2011-09-05 09:47:37 +0000 | [diff] [blame] | 104 | LockBoxLib|MdeModulePkg/Library/LockBoxNullLib/LockBoxNullLib.inf
|
andrewfish | 5d81a9b | 2012-03-16 16:52:46 +0000 | [diff] [blame] | 105 | CpuExceptionHandlerLib|MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLibNull.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 106 |
|
andrewfish | 65e3f33 | 2011-05-14 16:00:22 +0000 | [diff] [blame] | 107 | [LibraryClasses.common.SEC]
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 108 | PeiServicesLib|EmulatorPkg/Library/SecPeiServicesLib/SecPeiServicesLib.inf
|
andrewfish | 65e3f33 | 2011-05-14 16:00:22 +0000 | [diff] [blame] | 109 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 110 | PeCoffGetEntryPointLib|EmulatorPkg/Library/PeiEmuPeCoffGetEntryPointLib/PeiEmuPeCoffGetEntryPointLib.inf
|
| 111 | PeCoffExtraActionLib|EmulatorPkg/Library/PeiEmuPeCoffExtraActionLib/PeiEmuPeCoffExtraActionLib.inf
|
| 112 | SerialPortLib|EmulatorPkg/Library/PeiEmuSerialPortLib/PeiEmuSerialPortLib.inf
|
| 113 | PpiListLib|EmulatorPkg/Library/SecPpiListLib/SecPpiListLib.inf
|
andrewfish | 1453e77 | 2011-06-19 18:59:00 +0000 | [diff] [blame] | 114 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 115 | TimerLib|EmulatorPkg/Library/PeiTimerLib/PeiTimerLib.inf
|
andrewfish | 65e3f33 | 2011-05-14 16:00:22 +0000 | [diff] [blame] | 116 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 117 | [LibraryClasses.common.USER_DEFINED, LibraryClasses.common.BASE]
|
| 118 | DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
|
| 119 | PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
|
| 120 | MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
| 121 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 122 | PpiListLib|EmulatorPkg/Library/SecPpiListLib/SecPpiListLib.inf
|
| 123 | ThunkPpiList|EmulatorPkg/Library/ThunkPpiList/ThunkPpiList.inf
|
| 124 | ThunkProtocolList|EmulatorPkg/Library/ThunkProtocolList/ThunkProtocolList.inf
|
andrewfish | 65e3f33 | 2011-05-14 16:00:22 +0000 | [diff] [blame] | 125 | PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 126 | PpiListLib|EmulatorPkg/Library/SecPpiListLib/SecPpiListLib.inf
|
| 127 | PeiServicesLib|EmulatorPkg/Library/SecPeiServicesLib/SecPeiServicesLib.inf
|
andrewfish | 65e3f33 | 2011-05-14 16:00:22 +0000 | [diff] [blame] | 128 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 129 |
|
| 130 | [LibraryClasses.common.PEIM, LibraryClasses.common.PEI_CORE]
|
| 131 | HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
|
| 132 | MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
| 133 | ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 134 | PeCoffGetEntryPointLib|EmulatorPkg/Library/PeiEmuPeCoffGetEntryPointLib/PeiEmuPeCoffGetEntryPointLib.inf
|
| 135 | PeCoffExtraActionLib|EmulatorPkg/Library/PeiEmuPeCoffExtraActionLib/PeiEmuPeCoffExtraActionLib.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 136 | ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 137 | SerialPortLib|EmulatorPkg/Library/PeiEmuSerialPortLib/PeiEmuSerialPortLib.inf
|
andrewfish | 1453e77 | 2011-06-19 18:59:00 +0000 | [diff] [blame] | 138 | ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 139 | TimerLib|EmulatorPkg/Library/PeiTimerLib/PeiTimerLib.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 140 |
|
| 141 | [LibraryClasses.common.PEI_CORE]
|
| 142 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 143 |
|
| 144 | [LibraryClasses.common.PEIM]
|
| 145 | PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 146 |
|
| 147 | [LibraryClasses.common.DXE_CORE]
|
| 148 | HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
|
| 149 | MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
|
| 150 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 151 | PeCoffExtraActionLib|EmulatorPkg/Library/DxeEmuPeCoffExtraActionLib/DxeEmuPeCoffExtraActionLib.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 152 | ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
|
| 153 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 154 | TimerLib|EmulatorPkg/Library/DxeCoreTimerLib/DxeCoreTimerLib.inf
|
| 155 | EmuThunkLib|EmulatorPkg/Library/DxeEmuLib/DxeEmuLib.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 156 |
|
| 157 | [LibraryClasses.common.DXE_RUNTIME_DRIVER, LibraryClasses.common.UEFI_DRIVER, LibraryClasses.common.DXE_DRIVER, LibraryClasses.common.UEFI_APPLICATION]
|
| 158 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
| 159 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 160 | MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
|
| 161 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 162 | EmuThunkLib|EmulatorPkg/Library/DxeEmuLib/DxeEmuLib.inf
|
| 163 | PeCoffExtraActionLib|EmulatorPkg/Library/DxeEmuPeCoffExtraActionLib/DxeEmuPeCoffExtraActionLib.inf
|
andrewfish | 1453e77 | 2011-06-19 18:59:00 +0000 | [diff] [blame] | 164 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 165 | TimerLib|EmulatorPkg/Library/DxeTimerLib/DxeTimerLib.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 166 |
|
| 167 | [LibraryClasses.common.UEFI_DRIVER]
|
| 168 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
jljusten | d18d8a1 | 2011-06-28 16:50:26 +0000 | [diff] [blame] | 169 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 170 | [LibraryClasses.common.UEFI_APPLICATION]
|
| 171 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
| 172 |
|
| 173 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 174 | [PcdsFeatureFlag]
|
| 175 | gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE
|
| 176 | gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|TRUE
|
| 177 | gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreImageLoaderSearchTeSectionFirst|FALSE
|
andrewfish | 1fc9308 | 2011-08-11 03:37:26 +0000 | [diff] [blame] | 178 | gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplBuildPageTables|FALSE
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 179 |
|
| 180 | [PcdsFixedAtBuild]
|
lgao4 | df1b757 | 2011-08-29 13:36:03 +0000 | [diff] [blame] | 181 | gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 182 | gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000040
|
| 183 | gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x0f
|
| 184 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x1f
|
| 185 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizeNonPopulateCapsule|0x0
|
| 186 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizePopulateCapsule|0x0
|
| 187 |
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 188 | gEmulatorPkgTokenSpaceGuid.PcdEmuFirmwareFdSize|0x002a0000
|
| 189 | gEmulatorPkgTokenSpaceGuid.PcdEmuFirmwareBlockSize|0x10000
|
| 190 | gEmulatorPkgTokenSpaceGuid.PcdEmuFirmwareVolume|L"../FV/FV_RECOVERY.fd"
|
jljusten | d18d8a1 | 2011-06-28 16:50:26 +0000 | [diff] [blame] | 191 |
|
jljusten | 59ad461 | 2011-06-29 05:13:33 +0000 | [diff] [blame] | 192 | gEmulatorPkgTokenSpaceGuid.PcdEmuMemorySize|L"64!64"
|
jljusten | 72a44be | 2011-05-15 17:23:33 +0000 | [diff] [blame] | 193 |
|
| 194 | !if $(BUILD_NEW_SHELL)
|
| 195 | gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdShellFile|{ 0x83, 0xA5, 0x04, 0x7C, 0x3E, 0x9E, 0x1C, 0x4F, 0xAD, 0x65, 0xE0, 0x52, 0x68, 0xD0, 0xB4, 0xD1 }
|
| 196 | !else
|
| 197 | !if $(USE_NEW_SHELL)
|
| 198 | gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdShellFile|{ 0x83, 0xA5, 0x04, 0x7C, 0x3E, 0x9E, 0x1C, 0x4F, 0xAD, 0x65, 0xE0, 0x52, 0x68, 0xD0, 0xB4, 0xD1 }
|
| 199 | !endif
|
| 200 | !endif
|
| 201 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 202 | #define BOOT_WITH_FULL_CONFIGURATION 0x00
|
| 203 | #define BOOT_WITH_MINIMAL_CONFIGURATION 0x01
|
| 204 | #define BOOT_ASSUMING_NO_CONFIGURATION_CHANGES 0x02
|
| 205 | #define BOOT_WITH_FULL_CONFIGURATION_PLUS_DIAGNOSTICS 0x03
|
| 206 | #define BOOT_WITH_DEFAULT_SETTINGS 0x04
|
| 207 | #define BOOT_ON_S4_RESUME 0x05
|
| 208 | #define BOOT_ON_S5_RESUME 0x06
|
| 209 | #define BOOT_ON_S2_RESUME 0x10
|
| 210 | #define BOOT_ON_S3_RESUME 0x11
|
| 211 | #define BOOT_ON_FLASH_UPDATE 0x12
|
| 212 | #define BOOT_IN_RECOVERY_MODE 0x20
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 213 | gEmulatorPkgTokenSpaceGuid.PcdEmuBootMode|0
|
jljusten | d18d8a1 | 2011-06-28 16:50:26 +0000 | [diff] [blame] | 214 |
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 215 | gEmulatorPkgTokenSpaceGuid.PcdEmuApCount|L"1"
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 216 |
|
andrewfish | 5dcda29 | 2011-06-17 16:18:14 +0000 | [diff] [blame] | 217 | # For a CD-ROM/DVD use L"diag.dmg:RO:2048"
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 218 | gEmulatorPkgTokenSpaceGuid.PcdEmuVirtualDisk|L"disk.dmg:FW"
|
| 219 | gEmulatorPkgTokenSpaceGuid.PcdEmuGop|L"GOP Window"
|
| 220 | gEmulatorPkgTokenSpaceGuid.PcdEmuFileSystem|L".!../../../../EdkShellBinPkg/Bin"
|
| 221 | gEmulatorPkgTokenSpaceGuid.PcdEmuSerialPort|L"/dev/ttyS0"
|
| 222 | gEmulatorPkgTokenSpaceGuid.PcdEmuNetworkInterface|L"en0"
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 223 |
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 224 | gEmulatorPkgTokenSpaceGuid.PcdEmuCpuModel|L"Intel(R) Processor Model"
|
| 225 | gEmulatorPkgTokenSpaceGuid.PcdEmuCpuSpeed|L"3000"
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 226 |
|
andrewfish | 7e284ac | 2011-06-08 02:34:12 +0000 | [diff] [blame] | 227 | # 0-PCANSI, 1-VT100, 2-VT00+, 3-UTF8
|
| 228 | gEfiMdePkgTokenSpaceGuid.PcdDefaultTerminalType|1
|
| 229 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 230 | [PcdsDynamicDefault.common.DEFAULT]
|
| 231 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64|0
|
| 232 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64|0
|
| 233 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64|0
|
| 234 |
|
| 235 | [PcdsDynamicHii.common.DEFAULT]
|
| 236 | gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn|L"Setup"|gEmuSystemConfigGuid|0x0|80
|
| 237 | gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow|L"Setup"|gEmuSystemConfigGuid|0x4|25
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 238 |
|
| 239 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 240 | [Components]
|
jljusten | 53a6813 | 2011-06-20 21:58:22 +0000 | [diff] [blame] | 241 | !ifdef $(UNIX_SEC_BUILD)
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 242 | ##
|
andrewfish | 5dcda29 | 2011-06-17 16:18:14 +0000 | [diff] [blame] | 243 | # Emulator, OS POSIX application
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 244 | ##
|
jljusten | 59ad461 | 2011-06-29 05:13:33 +0000 | [diff] [blame] | 245 | EmulatorPkg/Unix/Host/Host.inf
|
jljusten | 53a6813 | 2011-06-20 21:58:22 +0000 | [diff] [blame] | 246 | !endif
|
| 247 |
|
| 248 | !ifndef $(SKIP_MAIN_BUILD)
|
andrewfish | 65e3f33 | 2011-05-14 16:00:22 +0000 | [diff] [blame] | 249 | #
|
| 250 | # Generic SEC
|
| 251 | #
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 252 | EmulatorPkg/Sec/Sec.inf
|
andrewfish | 65e3f33 | 2011-05-14 16:00:22 +0000 | [diff] [blame] | 253 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 254 | ##
|
| 255 | # PEI Phase modules
|
| 256 | ##
|
| 257 | MdeModulePkg/Core/Pei/PeiMain.inf
|
| 258 | MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
|
| 259 | <LibraryClasses>
|
| 260 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
| 261 | }
|
| 262 | MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf
|
jljusten | d18d8a1 | 2011-06-28 16:50:26 +0000 | [diff] [blame] | 263 | MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf
|
| 264 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 265 | IntelFrameworkModulePkg/Universal/StatusCode/Pei/StatusCodePei.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 266 | EmulatorPkg/BootModePei/BootModePei.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 267 | MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 268 | EmulatorPkg/AutoScanPei/AutoScanPei.inf
|
| 269 | EmulatorPkg/FirmwareVolumePei/FirmwareVolumePei.inf
|
| 270 | EmulatorPkg/FlashMapPei/FlashMapPei.inf
|
| 271 | EmulatorPkg/ThunkPpiToProtocolPei/ThunkPpiToProtocolPei.inf
|
andrewfish | 46e5da2 | 2011-09-29 18:51:06 +0000 | [diff] [blame] | 272 | MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 273 |
|
| 274 | ##
|
| 275 | # DXE Phase modules
|
| 276 | ##
|
| 277 | MdeModulePkg/Core/Dxe/DxeMain.inf {
|
| 278 | <LibraryClasses>
|
andrewfish | 1453e77 | 2011-06-19 18:59:00 +0000 | [diff] [blame] | 279 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
andrewfish | bed0bbc | 2011-08-11 03:23:09 +0000 | [diff] [blame] | 280 | SerialPortLib|EmulatorPkg/Library/DxeEmuStdErrSerialPortLib/DxeEmuStdErrSerialPortLib.inf
|
| 281 | DxeEmuLib|EmulatorPkg/Library/DxeEmuLib/DxeEmuLib.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 282 | NULL|MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/DxeCrc32GuidedSectionExtractLib.inf
|
| 283 | NULL|IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
|
| 284 | }
|
| 285 | MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
|
| 286 | <LibraryClasses>
|
| 287 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
| 288 | }
|
| 289 |
|
| 290 | MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf
|
| 291 | MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf {
|
| 292 | <LibraryClasses>
|
andrewfish | 1453e77 | 2011-06-19 18:59:00 +0000 | [diff] [blame] | 293 | DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
|
jljusten | d18d8a1 | 2011-06-28 16:50:26 +0000 | [diff] [blame] | 294 | SerialPortLib|EmulatorPkg/Library/DxeEmuStdErrSerialPortLib/DxeEmuStdErrSerialPortLib.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 295 | }
|
| 296 |
|
andrewfish | 1ef4120 | 2011-06-21 23:41:31 +0000 | [diff] [blame] | 297 | MdeModulePkg/Universal/Metronome/Metronome.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 298 | EmulatorPkg/RealTimeClockRuntimeDxe/RealTimeClock.inf
|
| 299 | EmulatorPkg/ResetRuntimeDxe/Reset.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 300 | MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 301 | EmulatorPkg/FvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 302 | MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
|
| 303 | MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
|
| 304 | MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 305 | EmulatorPkg/EmuThunkDxe/EmuThunk.inf
|
| 306 | EmulatorPkg/CpuRuntimeDxe/Cpu.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 307 | MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
|
andrewfish | 63f9b9b | 2012-01-30 18:57:30 +0000 | [diff] [blame] | 308 | EmulatorPkg/PlatformSmbiosDxe/PlatformSmbiosDxe.inf
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 309 | EmulatorPkg/TimerDxe/Timer.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 310 |
|
| 311 |
|
| 312 | MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
|
| 313 | MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
|
| 314 | MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
|
| 315 | MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
|
| 316 | MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
|
| 317 | MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
|
| 318 | MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
|
andrewfish | 7e284ac | 2011-06-08 02:34:12 +0000 | [diff] [blame] | 319 | EmbeddedPkg/SerialDxe/SerialDxe.inf {
|
| 320 | <LibraryClasses>
|
| 321 | DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
|
jljusten | d18d8a1 | 2011-06-28 16:50:26 +0000 | [diff] [blame] | 322 | SerialPortLib|EmulatorPkg/Library/DxeEmuSerialPortLib/DxeEmuSerialPortLib.inf
|
andrewfish | 7e284ac | 2011-06-08 02:34:12 +0000 | [diff] [blame] | 323 | }
|
jljusten | d18d8a1 | 2011-06-28 16:50:26 +0000 | [diff] [blame] | 324 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 325 | MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
|
| 326 | IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf
|
jljusten | d18d8a1 | 2011-06-28 16:50:26 +0000 | [diff] [blame] | 327 | MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
|
andrewfish | 5dcda29 | 2011-06-17 16:18:14 +0000 | [diff] [blame] | 328 | #{
|
jljusten | d18d8a1 | 2011-06-28 16:50:26 +0000 | [diff] [blame] | 329 | # <LibraryClasses>
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 330 | # NULL|EmulatorPkg/Library/DevicePathTextLib/DevicePathTextLib.inf
|
andrewfish | 5dcda29 | 2011-06-17 16:18:14 +0000 | [diff] [blame] | 331 | #}
|
jljusten | d18d8a1 | 2011-06-28 16:50:26 +0000 | [diff] [blame] | 332 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 333 | MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
|
| 334 | MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
|
| 335 | MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
|
| 336 | MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
|
| 337 | MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
|
| 338 | MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
|
| 339 | IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/IdeBusDxe.inf
|
| 340 |
|
jljusten | bb89ec1 | 2011-06-28 16:47:23 +0000 | [diff] [blame] | 341 | EmulatorPkg/EmuBusDriverDxe/EmuBusDriverDxe.inf
|
| 342 | EmulatorPkg/EmuGopDxe/EmuGopDxe.inf
|
| 343 | EmulatorPkg/EmuSimpleFileSystemDxe/EmuSimpleFileSystemDxe.inf
|
| 344 | EmulatorPkg/EmuBlockIoDxe/EmuBlockIoDxe.inf
|
| 345 | EmulatorPkg/EmuSnpDxe/EmuSnpDxe.inf
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 346 |
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 347 | MdeModulePkg/Application/HelloWorld/HelloWorld.inf
|
| 348 |
|
| 349 | #
|
| 350 | # Network stack drivers
|
| 351 | #
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 352 | MdeModulePkg/Universal/Network/DpcDxe/DpcDxe.inf
|
| 353 | MdeModulePkg/Universal/Network/ArpDxe/ArpDxe.inf
|
| 354 | MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf
|
| 355 | MdeModulePkg/Universal/Network/Ip4ConfigDxe/Ip4ConfigDxe.inf
|
| 356 | MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Dxe.inf
|
| 357 | MdeModulePkg/Universal/Network/MnpDxe/MnpDxe.inf
|
| 358 | MdeModulePkg/Universal/Network/VlanConfigDxe/VlanConfigDxe.inf
|
| 359 | MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
|
| 360 | MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Dxe.inf
|
| 361 | MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Dxe.inf
|
| 362 |
|
| 363 | MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
|
| 364 | MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
|
| 365 | MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
|
| 366 | MdeModulePkg/Universal/PrintDxe/PrintDxe.inf
|
| 367 | MdeModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf {
|
| 368 | <LibraryClasses>
|
| 369 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
| 370 | }
|
| 371 |
|
jljusten | 72a44be | 2011-05-15 17:23:33 +0000 | [diff] [blame] | 372 | !if $(BUILD_FAT)
|
andrewfish | 949f388 | 2011-05-11 18:31:20 +0000 | [diff] [blame] | 373 | FatPkg/EnhancedFatDxe/Fat.inf
|
| 374 | !endif
|
jljusten | 72a44be | 2011-05-15 17:23:33 +0000 | [diff] [blame] | 375 |
|
| 376 | !if $(BUILD_NEW_SHELL)
|
| 377 | ShellPkg/Application/Shell/Shell.inf {
|
| 378 | <LibraryClasses>
|
| 379 | ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
|
| 380 | NULL|ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf
|
| 381 | NULL|ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf
|
| 382 | NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
|
| 383 | NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
|
| 384 | NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
|
| 385 | NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
|
| 386 | NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
|
| 387 | HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
|
| 388 | FileHandleLib|ShellPkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
|
| 389 | ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf
|
| 390 | SortLib|ShellPkg/Library/UefiSortLib/UefiSortLib.inf
|
| 391 | PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
|
andrewfish | 5407ce1 | 2011-07-01 16:58:47 +0000 | [diff] [blame] | 392 | PathLib|ShellPkg/Library/BasePathLib/BasePathLib.inf
|
| 393 | # MemoryAllocationLib|EmulatorPkg/Library/GuardUefiMemoryAllocationLib/GuardUefiMemoryAllocationLib.inf
|
andrewfish | 3f2035e | 2011-06-28 18:12:41 +0000 | [diff] [blame] | 394 | # SafeBlockIoLib|ShellPkg/Library/SafeBlockIoLib/SafeBlockIoLib.inf
|
| 395 | # SafeOpenProtocolLib|ShellPkg/Library/SafeOpenProtocolLib/SafeOpenProtocolLib.inf
|
andrewfish | 5dcda29 | 2011-06-17 16:18:14 +0000 | [diff] [blame] | 396 |
|
jljusten | 72a44be | 2011-05-15 17:23:33 +0000 | [diff] [blame] | 397 | <PcdsFixedAtBuild>
|
| 398 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xFF
|
| 399 | gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
|
| 400 | gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|8000
|
| 401 | }
|
| 402 | !endif
|
| 403 |
|
jljusten | 53a6813 | 2011-06-20 21:58:22 +0000 | [diff] [blame] | 404 | !endif
|
| 405 |
|