klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 1 | #/** @file
|
| 2 | # EFI/Framework Emulation Platform
|
| 3 | #
|
| 4 | # The Emulation Platform can be used to debug individual modules, prior to creating
|
| 5 | # a real platform. This also provides an example for how an FPD is created.
|
| 6 | #
|
| 7 | # Copyright (c) 2006 - 2007, Intel Corporation
|
| 8 | #
|
| 9 | # All rights reserved. This program and the accompanying materials
|
| 10 | # are licensed and made available under the terms and conditions of the BSD License
|
| 11 | # which accompanies this distribution. The full text of the license may be found at
|
| 12 | # http://opensource.org/licenses/bsd-license.php
|
vanjeff | 4cf1c1b | 2007-06-28 15:16:51 +0000 | [diff] [blame] | 13 | #
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 14 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
| 15 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
| 16 | #
|
| 17 | #**/
|
| 18 |
|
| 19 | ################################################################################
|
| 20 | #
|
| 21 | # Defines Section - statements that will be processed to create a Makefile.
|
| 22 | #
|
| 23 | ################################################################################
|
| 24 | [Defines]
|
| 25 | PLATFORM_NAME = NT32
|
| 26 | PLATFORM_GUID = EB216561-961F-47EE-9EF9-CA426EF547C2
|
| 27 | PLATFORM_VERSION = 0.3
|
| 28 | DSC_SPECIFICATION = 0x00010005
|
| 29 | OUTPUT_DIRECTORY = $(WORKSPACE)/Build/Nt32Platform
|
| 30 | SUPPORTED_ARCHITECTURES = IA32
|
| 31 | BUILD_TARGETS = DEBUG
|
| 32 | SKUID_IDENTIFIER = DEFAULT
|
lgao4 | 24491cf | 2007-07-03 03:10:14 +0000 | [diff] [blame] | 33 | FLASH_DEFINITION = $(WORKSPACE)/Nt32Pkg/Nt32Pkg.fdf
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 34 |
|
| 35 | DEBUG_ICC_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
|
| 36 | DEBUG_VS2003_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
|
| 37 | DEBUG_MYTOOLS_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
|
| 38 | DEBUG_WINDDK3790x1830_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
|
| 39 | DEBUG_VS2005PRO_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
|
| 40 | DEBUG_MIXED_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
|
| 41 | RELEASE_ICC_IA32_DLINK_FLAGS = /ALIGN:4096
|
| 42 | RELEASE_VS2003_IA32_DLINK_FLAGS = /ALIGN:4096
|
| 43 | RELEASE_MYTOOLS_IA32_DLINK_FLAGS = /ALIGN:4096
|
| 44 | RELEASE_WINDDK3790x1830_IA32_DLINK_FLAGS = /ALIGN:4096
|
| 45 | RELEASE_VS2005PRO_IA32_DLINK_FLAGS = /ALIGN:4096
|
| 46 | RELEASE_MIXED_IA32_DLINK_FLAGS = /ALIGN:4096
|
| 47 |
|
vanjeff | 2010c81 | 2007-07-04 02:30:58 +0000 | [diff] [blame] | 48 | ################################################################################
|
| 49 | #
|
| 50 | # SKU Identification section - list of all SKU IDs supported by this
|
| 51 | # Platform.
|
| 52 | #
|
| 53 | ################################################################################
|
| 54 | [SkuIds]
|
| 55 | 0|DEFAULT # The entry: 0|DEFAULT is reserved and always required.
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 56 |
|
| 57 | ################################################################################
|
| 58 | #
|
| 59 | # Library Class section - list of all Library Classes needed by this Platform.
|
| 60 | #
|
| 61 | ################################################################################
|
| 62 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 63 | [LibraryClasses.common]
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 64 | TimerLib|$(WORKSPACE)/MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf
|
| 65 | PrintLib|$(WORKSPACE)/MdePkg/Library/BasePrintLib/BasePrintLib.inf
|
vanjeff | 5520659 | 2007-07-02 03:11:11 +0000 | [diff] [blame] | 66 | SerialPortLib|$(WORKSPACE)/MdePkg/Library/SerialPortLibNull/SerialPortLibNull.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 67 | BaseMemoryLib|$(WORKSPACE)/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
|
| 68 | BaseLib|$(WORKSPACE)/MdePkg/Library/BaseLib/BaseLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 69 | PerformanceLib|$(WORKSPACE)/MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
|
| 70 | PeCoffLib|$(WORKSPACE)/MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
|
klu2 | 6fa9d09 | 2007-07-06 08:25:28 +0000 | [diff] [blame] | 71 | PciIncompatibleDeviceSupportLib|$(WORKSPACE)/IntelFrameworkModulePkg/Library/PciIncompatibleDeviceSupportLib/PciIncompatibleDeviceSupportLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 72 | CacheMaintenanceLib|$(WORKSPACE)/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
|
qwang12 | 1897b70 | 2007-07-03 02:34:30 +0000 | [diff] [blame] | 73 | IfrSupportLibFramework|$(WORKSPACE)/IntelFrameworkPkg/Library/IfrSupportLibFramework/IfrSupportLib.inf
|
qwang12 | c7f2624 | 2007-06-29 03:20:12 +0000 | [diff] [blame] | 74 | GraphicsLib|$(WORKSPACE)/IntelFrameworkModulePkg/Library/GraphicsLib/GraphicsLib.inf
|
klu2 | 6fa9d09 | 2007-07-06 08:25:28 +0000 | [diff] [blame] | 75 | FvbServiceLib|$(WORKSPACE)/MdeModulePkg/Library/EdkFvbServiceLib/EdkFvbServiceLib.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 76 | IoLib|$(WORKSPACE)/MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
|
klu2 | 6fa9d09 | 2007-07-06 08:25:28 +0000 | [diff] [blame] | 77 | CustomDecompressLib|$(WORKSPACE)/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.inf
|
| 78 | HiiLib|$(WORKSPACE)/IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
|
klu2 | 8514044 | 2007-07-06 02:09:34 +0000 | [diff] [blame] | 79 |
|
AJFISH | d695558 | 2007-07-05 22:17:00 +0000 | [diff] [blame] | 80 | [LibraryClasses.common.BASE]
|
| 81 | DebugLib|$(WORKSPACE)/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
|
| 82 |
|
| 83 | [LibraryClasses.common.SEC]
|
| 84 | DebugLib|$(WORKSPACE)/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
|
| 85 |
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 86 | [LibraryClasses.common.DXE_CORE]
|
| 87 | DevicePathLib|$(WORKSPACE)/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
klu2 | 6fa9d09 | 2007-07-06 08:25:28 +0000 | [diff] [blame] | 88 | UefiDecompressLib|$(WORKSPACE)/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 89 | UefiBootServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
| 90 | HobLib|$(WORKSPACE)/MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
|
| 91 | DxeCoreEntryPoint|$(WORKSPACE)/MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
|
| 92 | CustomDecompressLib|$(WORKSPACE)/MdeModulePkg/Library/DxeCoreCustomDecompressLibFromHob/DxeCoreCustomDecompressLibFromHob.inf
|
| 93 | MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
|
| 94 | UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
|
| 95 | ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
|
klu2 | be29ac9 | 2007-07-06 05:19:36 +0000 | [diff] [blame] | 96 | PeCoffLoaderLib|$(WORKSPACE)/MdeModulePkg/Library/DxePeCoffLoaderFromHobLib/DxePeCoffLoaderFromHobLib.inf
|
klu2 | 56a71b5 | 2007-07-05 15:27:43 +0000 | [diff] [blame] | 97 | UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
AJFISH | d695558 | 2007-07-05 22:17:00 +0000 | [diff] [blame] | 98 | DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 99 |
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 100 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 101 | [LibraryClasses.common.DXE_SMM_DRIVER]
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 102 | DxeServicesTableLib|$(WORKSPACE)/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
klu2 | 3a10d47 | 2007-06-29 03:33:17 +0000 | [diff] [blame] | 103 | ScsiLib|$(WORKSPACE)/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 104 | UefiDecompressLib|$(WORKSPACE)/MdeModulePkg/Library/DxeCoreUefiDecompressLibFromHob/DxeCoreUefiDecompressLibFromHob.inf
|
qwang12 | 29aa45b | 2007-06-29 08:47:14 +0000 | [diff] [blame] | 105 | HiiLibFramework|$(WORKSPACE)/IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 106 | UefiBootServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
| 107 | HobLib|$(WORKSPACE)/MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
| 108 | DevicePathLib|$(WORKSPACE)/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
klu2 | e15fbaf | 2007-07-06 08:08:57 +0000 | [diff] [blame] | 109 | # After tools enable the dynamic PCD, please uncomment follows library instances mapping.
|
| 110 | #PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 111 | MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 112 | UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
|
klu2 | de4c8a3 | 2007-06-28 08:36:46 +0000 | [diff] [blame] | 113 | ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 114 | UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 115 | WinNtLib|$(WORKSPACE)/Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
|
| 116 | OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
|
klu2 | e15fbaf | 2007-07-06 08:08:57 +0000 | [diff] [blame] | 117 | # After tools enable the dynamic PCD, please uncomment follows library instances mapping.
|
| 118 | #PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
AJFISH | d695558 | 2007-07-05 22:17:00 +0000 | [diff] [blame] | 119 | DebugLib|$(WORKSPACE)/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 120 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 121 | [LibraryClasses.common.PEIM]
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 122 | HobLib|$(WORKSPACE)/MdePkg/Library/PeiHobLib/PeiHobLib.inf
|
klu2 | e15fbaf | 2007-07-06 08:08:57 +0000 | [diff] [blame] | 123 | # After tools enable the dynamic PCD, please uncomment follows library instances mapping.
|
| 124 | #PcdLib|$(WORKSPACE)/MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 125 | IoLib|$(WORKSPACE)/MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 126 | PeimEntryPoint|$(WORKSPACE)/MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
|
| 127 | PeiServicesLib|$(WORKSPACE)/MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 128 | MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
vanjeff | 5520659 | 2007-07-02 03:11:11 +0000 | [diff] [blame] | 129 | ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
klu2 | 56a71b5 | 2007-07-05 15:27:43 +0000 | [diff] [blame] | 130 | PeCoffLoaderLib|$(WORKSPACE)/Nt32Pkg/Library/Nt32PeCoffLoaderLib/Nt32PeCoffLoaderLib.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 131 | PeiServicesTablePointerLib|$(WORKSPACE)/MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
|
| 132 | OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/PeiNt32OemHookStatusCodeLib.inf
|
klu2 | b300209 | 2007-07-09 01:36:16 +0000 | [diff] [blame^] | 133 | PeCoffGetEntryPointLib|$(WORKSPACE)/Nt32Pkg/Library/Nt32PeiPeCoffGetEntryPointLib/Nt32PeiPeCoffGetEntryPointLib.inf
|
AJFISH | d695558 | 2007-07-05 22:17:00 +0000 | [diff] [blame] | 134 | DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 135 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 136 | [LibraryClasses.common.PEI_CORE]
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 137 | HobLib|$(WORKSPACE)/MdePkg/Library/PeiHobLib/PeiHobLib.inf
|
| 138 | PeiServicesTablePointerLib|$(WORKSPACE)/MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 139 | IoLib|$(WORKSPACE)/MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 140 | PeiServicesLib|$(WORKSPACE)/MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
|
| 141 | MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
| 142 | PeiCoreEntryPoint|$(WORKSPACE)/MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
|
klu2 | 2e7a663 | 2007-07-05 09:41:22 +0000 | [diff] [blame] | 143 | OldPeiCoreEntryPoint|$(WORKSPACE)/MdePkg/Library/OldPeiCoreEntryPoint/OldPeiCoreEntryPoint.inf
|
vanjeff | 5520659 | 2007-07-02 03:11:11 +0000 | [diff] [blame] | 144 | ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
klu2 | b300209 | 2007-07-09 01:36:16 +0000 | [diff] [blame^] | 145 | PeCoffGetEntryPointLib|$(WORKSPACE)/Nt32Pkg/Library/Nt32PeiPeCoffGetEntryPointLib/Nt32PeiPeCoffGetEntryPointLib.inf
|
klu2 | e15fbaf | 2007-07-06 08:08:57 +0000 | [diff] [blame] | 146 | # After tools enable the dynamic PCD, please uncomment follows library instances mapping.
|
| 147 | #PcdLib|$(WORKSPACE)/MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
|
AJFISH | d695558 | 2007-07-05 22:17:00 +0000 | [diff] [blame] | 148 | DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 149 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 150 | [LibraryClasses.common.DXE_RUNTIME_DRIVER]
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 151 | UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
| 152 | HobLib|$(WORKSPACE)/MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
klu2 | e15fbaf | 2007-07-06 08:08:57 +0000 | [diff] [blame] | 153 | # After tools enable the dynamic PCD, please uncomment follows library instances mapping.
|
| 154 | #PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 155 | MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
|
| 156 | UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
|
| 157 | UefiDriverEntryPoint|$(WORKSPACE)/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
|
klu2 | de4c8a3 | 2007-06-28 08:36:46 +0000 | [diff] [blame] | 158 | ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 159 | DxeServicesTableLib|$(WORKSPACE)/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
| 160 | UefiDecompressLib|$(WORKSPACE)/MdeModulePkg/Library/DxeCoreUefiDecompressLibFromHob/DxeCoreUefiDecompressLibFromHob.inf
|
qwang12 | 29aa45b | 2007-06-29 08:47:14 +0000 | [diff] [blame] | 161 | HiiLibFramework|$(WORKSPACE)/IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 162 | UefiBootServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
| 163 | DevicePathLib|$(WORKSPACE)/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 164 | UefiRuntimeLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
|
klu2 | 3a10d47 | 2007-06-29 03:33:17 +0000 | [diff] [blame] | 165 | ScsiLib|$(WORKSPACE)/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 166 | UefiDriverModelLib|$(WORKSPACE)/MdePkg/Library/UefiDriverModelLib/UefiDriverModelLib.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 167 | WinNtLib|$(WORKSPACE)/Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
|
| 168 | OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
|
AJFISH | d695558 | 2007-07-05 22:17:00 +0000 | [diff] [blame] | 169 | DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 170 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 171 | [LibraryClasses.common.UEFI_DRIVER]
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 172 | UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
| 173 | HobLib|$(WORKSPACE)/MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
klu2 | e15fbaf | 2007-07-06 08:08:57 +0000 | [diff] [blame] | 174 | # After tools enable the dynamic PCD, please uncomment follows library instances mapping.
|
| 175 | #PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 176 | MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
|
| 177 | UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
|
| 178 | UefiDriverEntryPoint|$(WORKSPACE)/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
|
klu2 | de4c8a3 | 2007-06-28 08:36:46 +0000 | [diff] [blame] | 179 | ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 180 | DxeServicesTableLib|$(WORKSPACE)/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
| 181 | UefiDecompressLib|$(WORKSPACE)/MdeModulePkg/Library/DxeCoreUefiDecompressLibFromHob/DxeCoreUefiDecompressLibFromHob.inf
|
qwang12 | 29aa45b | 2007-06-29 08:47:14 +0000 | [diff] [blame] | 182 | HiiLibFramework|$(WORKSPACE)/IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 183 | UefiBootServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
| 184 | DevicePathLib|$(WORKSPACE)/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
klu2 | 3a10d47 | 2007-06-29 03:33:17 +0000 | [diff] [blame] | 185 | ScsiLib|$(WORKSPACE)/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 186 | UefiDriverModelLib|$(WORKSPACE)/MdePkg/Library/UefiDriverModelLib/UefiDriverModelLib.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 187 | WinNtLib|$(WORKSPACE)/Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
|
| 188 | OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
|
AJFISH | d695558 | 2007-07-05 22:17:00 +0000 | [diff] [blame] | 189 | DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 190 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 191 | [LibraryClasses.common.DXE_DRIVER]
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 192 | UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
| 193 | HobLib|$(WORKSPACE)/MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
klu2 | e15fbaf | 2007-07-06 08:08:57 +0000 | [diff] [blame] | 194 | # After tools enable the dynamic PCD, please uncomment follows library instances mapping.
|
| 195 | #PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 196 | MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
|
| 197 | UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
|
| 198 | UefiDriverEntryPoint|$(WORKSPACE)/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
|
klu2 | de4c8a3 | 2007-06-28 08:36:46 +0000 | [diff] [blame] | 199 | ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 200 | DxeServicesTableLib|$(WORKSPACE)/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
| 201 | UefiDecompressLib|$(WORKSPACE)/MdeModulePkg/Library/DxeCoreUefiDecompressLibFromHob/DxeCoreUefiDecompressLibFromHob.inf
|
qwang12 | 29aa45b | 2007-06-29 08:47:14 +0000 | [diff] [blame] | 202 | HiiLibFramework|$(WORKSPACE)/IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 203 | UefiBootServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
| 204 | DevicePathLib|$(WORKSPACE)/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
klu2 | 3a10d47 | 2007-06-29 03:33:17 +0000 | [diff] [blame] | 205 | ScsiLib|$(WORKSPACE)/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 206 | UefiDriverModelLib|$(WORKSPACE)/MdePkg/Library/UefiDriverModelLib/UefiDriverModelLib.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 207 | WinNtLib|$(WORKSPACE)/Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
|
| 208 | OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
|
| 209 | EdkGenericBdsLib|$(WORKSPACE)/Nt32Pkg/Library/EdkGenericBdsLib/EdkGenericBdsLib.inf
|
AJFISH | d695558 | 2007-07-05 22:17:00 +0000 | [diff] [blame] | 210 | DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 211 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 212 | [LibraryClasses.common.UEFI_APPLICATION]
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 213 | DxeServicesTableLib|$(WORKSPACE)/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
klu2 | 3a10d47 | 2007-06-29 03:33:17 +0000 | [diff] [blame] | 214 | ScsiLib|$(WORKSPACE)/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 215 | UefiDecompressLib|$(WORKSPACE)/MdeModulePkg/Library/DxeCoreUefiDecompressLibFromHob/DxeCoreUefiDecompressLibFromHob.inf
|
qwang12 | 29aa45b | 2007-06-29 08:47:14 +0000 | [diff] [blame] | 216 | HiiLibFramework|$(WORKSPACE)/IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 217 | UefiApplicationEntryPoint|$(WORKSPACE)/MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
|
| 218 | UefiBootServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
| 219 | HobLib|$(WORKSPACE)/MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
| 220 | DevicePathLib|$(WORKSPACE)/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
| 221 | EdkIfrSupportLib|$(WORKSPACE)/MdeModulePkg/Library/EdkIfrSupportLib/EdkIfrSupportLib.inf
|
klu2 | e15fbaf | 2007-07-06 08:08:57 +0000 | [diff] [blame] | 222 | # After tools enable the dynamic PCD, please uncomment follows library instances mapping.
|
| 223 | #PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 224 | MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 225 | UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
|
klu2 | de4c8a3 | 2007-06-28 08:36:46 +0000 | [diff] [blame] | 226 | ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 227 | UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 228 | WinNtLib|$(WORKSPACE)/Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
|
| 229 | OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
|
AJFISH | d695558 | 2007-07-05 22:17:00 +0000 | [diff] [blame] | 230 | DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
|
vanjeff | 4cf1c1b | 2007-06-28 15:16:51 +0000 | [diff] [blame] | 231 |
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 232 |
|
| 233 | ################################################################################
|
| 234 | #
|
| 235 | # Pcd Section - list of all EDK II PCD Entries defined by this Platform
|
| 236 | #
|
| 237 | ################################################################################
|
| 238 |
|
xgu3 | 9527612 | 2007-07-05 07:05:28 +0000 | [diff] [blame] | 239 | [PcdsFeatureFlag.common]
|
klu2 | b79cf16 | 2007-07-06 17:04:09 +0000 | [diff] [blame] | 240 | PcdDevicePathSupportDevicePathFromText|gEfiMdeModulePkgTokenSpaceGuid|FALSE
|
| 241 | PcdDevicePathSupportDevicePathToText|gEfiMdeModulePkgTokenSpaceGuid|FALSE
|
klu2 | be29ac9 | 2007-07-06 05:19:36 +0000 | [diff] [blame] | 242 | PcdDxeIplSupportCustomDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
| 243 | PcdDxeIplBuildShareCodeHobs|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
| 244 | PcdDxeIplSupportEfiDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
| 245 | PcdDxeIplSupportTianoDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
| 246 | PcdDxeIplSupportCustomDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
xgu3 | 9527612 | 2007-07-05 07:05:28 +0000 | [diff] [blame] | 247 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 248 | [PcdsPatchableInModule.IA32]
|
vanjeff | 5520659 | 2007-07-02 03:11:11 +0000 | [diff] [blame] | 249 | PcdStatusCodeMemorySize|gEfiIntelFrameworkModulePkgTokenSpaceGuid|1
|
| 250 | PcdStatusCodeRuntimeMemorySize|gEfiIntelFrameworkModulePkgTokenSpaceGuid|128
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 251 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 252 | [PcdsFixedAtBuild.IA32]
|
klu2 | 2e19fd0 | 2007-07-03 09:18:19 +0000 | [diff] [blame] | 253 | PcdWinNtMemorySizeForSecMain|gEfiNt32PkgTokenSpaceGuid|L"64!64"|10
|
| 254 | PcdWinNtFirmwareVolume|gEfiNt32PkgTokenSpaceGuid|L"..\\Fv\\Fv_Recovery.fd"|52
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 255 | PcdWinNtBootMode|gEfiNt32PkgTokenSpaceGuid|1
|
| 256 | PcdMaximumUnicodeStringLength|gEfiMdePkgTokenSpaceGuid|1000000
|
| 257 | PcdMaximumAsciiStringLength|gEfiMdePkgTokenSpaceGuid|1000000
|
| 258 | PcdMaximumLinkedListLength|gEfiMdePkgTokenSpaceGuid|1000000
|
| 259 | PcdSpinLockTimeout|gEfiMdePkgTokenSpaceGuid|10000000
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 260 | PcdMaximumAsciiStringLength|gEfiMdePkgTokenSpaceGuid|1000000
|
| 261 | PcdMaximumLinkedListLength|gEfiMdePkgTokenSpaceGuid|1000000
|
| 262 | PcdSpinLockTimeout|gEfiMdePkgTokenSpaceGuid|10000000
|
klu2 | 7d421cf | 2007-07-06 03:54:26 +0000 | [diff] [blame] | 263 | PcdReportStatusCodePropertyMask|gEfiMdePkgTokenSpaceGuid|0x0f
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 264 | PcdDebugPropertyMask|gEfiMdePkgTokenSpaceGuid|0x1f
|
| 265 | PcdDebugClearMemoryValue|gEfiMdePkgTokenSpaceGuid|0xAF
|
klu2 | 56a71b5 | 2007-07-05 15:27:43 +0000 | [diff] [blame] | 266 | PcdDebugPrintErrorLevel|gEfiMdePkgTokenSpaceGuid|0x80000040
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 267 | PcdPerformanceLibraryPropertyMask|gEfiMdePkgTokenSpaceGuid|0
|
| 268 | PcdMaxPeiPcdCallBackNumberPerPcdEntry|gEfiMdeModulePkgTokenSpaceGuid|0x08
|
klu2 | 3111e7b | 2007-07-06 16:09:37 +0000 | [diff] [blame] | 269 | PcdVpdBaseAddress|gEfiMdeModulePkgTokenSpaceGuid|0x0
|
| 270 | PcdMaxSizeNonPopulateCapsule|gEfiMdeModulePkgTokenSpaceGuid|0x0
|
| 271 | PcdMaxSizePopulateCapsule|gEfiMdeModulePkgTokenSpaceGuid|0x0
|
qhuang8 | 35ccc74 | 2007-06-29 08:10:42 +0000 | [diff] [blame] | 272 | PcdPciIncompatibleDeviceSupportMask|gEfiIntelFrameworkModulePkgTokenSpaceGuid|0
|
klu2 | e15fbaf | 2007-07-06 08:08:57 +0000 | [diff] [blame] | 273 | PcdFlashNvStorageFtwSpareBase|gEfiMdeModulePkgTokenSpaceGuid|0x0
|
| 274 | PcdFlashNvStorageFtwSpareSize|gEfiMdeModulePkgTokenSpaceGuid|0x280000
|
| 275 | PcdFlashNvStorageFtwWorkingBase|gEfiMdeModulePkgTokenSpaceGuid|0x28e000
|
| 276 | PcdFlashNvStorageFtwWorkingSize|gEfiMdeModulePkgTokenSpaceGuid|0x2000
|
| 277 | PcdFlashNvStorageVariableBase|gEfiMdeModulePkgTokenSpaceGuid|0x280000
|
| 278 | PcdFlashNvStorageVariableSize|gEfiMdeModulePkgTokenSpaceGuid|0x00c000
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 279 |
|
| 280 | [PcdsFeatureFlag.IA32]
|
klu2 | 3111e7b | 2007-07-06 16:09:37 +0000 | [diff] [blame] | 281 | PcdPeiPcdDatabaseTraverseEnabled|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
| 282 | PcdPeiPcdDatabaseCallbackOnSetEnabled|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
| 283 | PcdPeiPcdDatabaseExEnabled|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
| 284 | PcdPeiPcdDatabaseGetSizeEnabled|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
| 285 | PcdPeiPcdDatabaseSetEnabled|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
vanjeff | 5520659 | 2007-07-02 03:11:11 +0000 | [diff] [blame] | 286 | PcdStatusCodeUseSerial|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 287 | PcdStatusCodeUseMemory|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 288 | PcdStatusCodeUseOEM|gEfiIntelFrameworkModulePkgTokenSpaceGuid|TRUE
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 289 | PcdDxeIplSwitchToLongMode|gEfiMdeModulePkgTokenSpaceGuid|FALSE
|
| 290 | PcdDxeIplSupportEfiDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
| 291 | PcdDxeIplSupportTianoDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
| 292 | PcdDxeIplSupportCustomDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
klu2 | be29ac9 | 2007-07-06 05:19:36 +0000 | [diff] [blame] | 293 | PcdDxeIplBuildShareCodeHobs|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
klu2 | 3111e7b | 2007-07-06 16:09:37 +0000 | [diff] [blame] | 294 | PcdDxePcdDatabaseTraverseEnabled|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
vanjeff | 5520659 | 2007-07-02 03:11:11 +0000 | [diff] [blame] | 295 | PcdStatusCodeUseHardSerial|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 296 | PcdStatusCodeUseEfiSerial|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 297 | PcdStatusCodeUseRuntimeMemory|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 298 | PcdStatusCodeUseDataHub|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 299 | PcdStatusCodeUseOEM|gEfiIntelFrameworkModulePkgTokenSpaceGuid|TRUE
|
| 300 | PcdStatusCodeReplayInSerial|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 301 | PcdStatusCodeReplayInDataHub|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 302 | PcdStatusCodeReplayInRuntimeMemory|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 303 | PcdStatusCodeReplayInOEM|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 304 | PcdSupportUpdateCapsuleRest|gEfiMdeModulePkgTokenSpaceGuid|FALSE
|
| 305 | PcdComponentNameDisable|gEfiMdePkgTokenSpaceGuid|FALSE
|
| 306 | PcdDriverDiagnosticsDisable|gEfiMdePkgTokenSpaceGuid|FALSE
|
| 307 | PcdNtEmulatorEnable|gEfiMdeModulePkgTokenSpaceGuid|FALSE
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 308 | PcdDevicePathSupportDevicePathToText|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
| 309 | PcdDevicePathSupportDevicePathFromText|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 310 | PcdPciBusHotplugDeviceSupport|gEfiGenericPlatformTokenSpaceGuid|TRUE
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 311 | PcdComponentName2Disable|gEfiMdePkgTokenSpaceGuid|TRUE
|
| 312 | PcdUefiLibMaxPrintBufferSize|gEfiMdePkgTokenSpaceGuid|320
|
| 313 | PcdDriverDiagnostics2Disable|gEfiMdePkgTokenSpaceGuid|TRUE
|
klu2 | b79cf16 | 2007-07-06 17:04:09 +0000 | [diff] [blame] | 314 | PcdSupportUpdateCapsuleRest|gEfiMdeModulePkgTokenSpaceGuid|FALSE
|
qhuang8 | 35ccc74 | 2007-06-29 08:10:42 +0000 | [diff] [blame] | 315 | PcdPciIsaEnable|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 316 | PcdPciVgaEnable|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 317 | PcdPciBusHotplugDeviceSupport|gEfiIntelFrameworkModulePkgTokenSpaceGuid|TRUE
|
AJFISH | ba23773 | 2007-07-03 18:34:24 +0000 | [diff] [blame] | 318 | PcdStatusCodeValueEfiWatchDogTimerExpired|gEfiMdePkgTokenSpaceGuid|0x00011003
|
| 319 | PcdStatusCodeValueMemoryTestStarted|gEfiMdePkgTokenSpaceGuid|0x00051006
|
| 320 | PcdStatusCodeValueSetVirtualAddressMap|gEfiMdePkgTokenSpaceGuid|0x03101004
|
| 321 | PcdStatusCodeValueUncorrectableMemoryError|gEfiMdePkgTokenSpaceGuid|0x00051003
|
| 322 |
|
| 323 |
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 324 |
|
| 325 | ################################################################################
|
| 326 | #
|
| 327 | # Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
|
| 328 | #
|
| 329 | ################################################################################
|
| 330 |
|
jwang36 | 2cb630b | 2007-07-06 07:41:51 +0000 | [diff] [blame] | 331 | [PcdsDynamicDefault.common.DEFAULT]
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 332 | PcdWinNtCpuSpeed|gEfiNt32PkgTokenSpaceGuid|L"3000"|8
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 333 | PcdWinNtSerialPort|gEfiNt32PkgTokenSpaceGuid|L"COM1!COM2"|18
|
| 334 | PcdWinNtFileSystem|gEfiNt32PkgTokenSpaceGuid|L".!..\\..\\..\\..\\EdkShellBinPkg\\bin\\ia32\\Apps"|106
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 335 | PcdWinNtGop|gEfiNt32PkgTokenSpaceGuid|L"UGA Window 1!UGA Window 2"|50
|
| 336 | PcdWinNtConsole|gEfiNt32PkgTokenSpaceGuid|L"Bus Driver Console Window"|50
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 337 | PcdWinNtMemorySize|gEfiNt32PkgTokenSpaceGuid|L"64!64"|10
|
| 338 | PcdWinNtVirtualDisk|gEfiNt32PkgTokenSpaceGuid|L"FW;40960;512"|24
|
| 339 | PcdWinNtCpuModel|gEfiNt32PkgTokenSpaceGuid|L"Intel(R) Processor Model"|48
|
| 340 | PcdWinNtPhysicalDisk|gEfiNt32PkgTokenSpaceGuid|L"E:RW;245760;512"|30
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 341 | PcdWinNtUga|gEfiNt32PkgTokenSpaceGuid|L"UGA Window 1!UGA Window 2"|50
|
| 342 |
|
| 343 | ################################################################################
|
| 344 | #
|
| 345 | # Components Section - list of all EDK II Modules needed by this Platform
|
| 346 | #
|
| 347 | ################################################################################
|
| 348 |
|
| 349 | [Components.IA32]
|
klu2 | 04eced5 | 2007-07-06 14:56:41 +0000 | [diff] [blame] | 350 | ##
|
| 351 | # SEC Phase modules
|
| 352 | ##
|
| 353 | $(WORKSPACE)/Nt32Pkg/Sec/SecMain.inf
|
| 354 |
|
| 355 | ##
|
| 356 | # PEI Phase modules
|
| 357 | ##
|
| 358 | $(WORKSPACE)/MdeModulePkg/Core/Pei/PeiMain.inf
|
| 359 | $(WORKSPACE)/MdeModulePkg/Universal/PCD/Pei/Pcd.inf
|
| 360 | $(WORKSPACE)/IntelFrameworkModulePkg/Universal/StatusCode/Pei/PeiStatusCode.inf
|
lgao4 | 9921414 | 2007-07-02 08:40:26 +0000 | [diff] [blame] | 361 | $(WORKSPACE)/Nt32Pkg/BootModePei/BootMode.inf
|
klu2 | 04eced5 | 2007-07-06 14:56:41 +0000 | [diff] [blame] | 362 | $(WORKSPACE)/Nt32Pkg/WinNtFlashMapPei/FlashMap.inf
|
| 363 | $(WORKSPACE)/MdeModulePkg/Universal/BaseMemoryTestPei/BaseMemoryTest.inf
|
| 364 | $(WORKSPACE)/MdeModulePkg/Universal/VariablePei/Variable.inf
|
| 365 | $(WORKSPACE)/Nt32Pkg/WinNtAutoScanPei/WinNtAutoScan.inf
|
| 366 | $(WORKSPACE)/Nt32Pkg/WinNtFirmwareVolumePei/WinNtFwh.inf
|
qhuang8 | 6ec032f | 2007-06-28 14:21:17 +0000 | [diff] [blame] | 367 | $(WORKSPACE)/Nt32Pkg/WinNtThunkPPIToProtocolPei/WinNtThunkPPIToProtocol.inf
|
klu2 | 04eced5 | 2007-07-06 14:56:41 +0000 | [diff] [blame] | 368 | $(WORKSPACE)/MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
|
| 369 |
|
| 370 | ##
|
| 371 | # DXE Phase modules
|
| 372 | ##
|
| 373 | $(WORKSPACE)/MdeModulePkg/Core/Dxe/DxeMain.inf
|
| 374 | $(WORKSPACE)/MdeModulePkg/Universal/PCD/Dxe/Pcd.inf
|
qwang12 | 1897b70 | 2007-07-03 02:34:30 +0000 | [diff] [blame] | 375 | $(WORKSPACE)/Nt32Pkg/MetronomeDxe/Metronome.inf
|
klu2 | 04eced5 | 2007-07-06 14:56:41 +0000 | [diff] [blame] | 376 | $(WORKSPACE)/Nt32Pkg/RealTimeClockRuntimeDxe/RealTimeClock.inf
|
| 377 | $(WORKSPACE)/Nt32Pkg/ResetRuntimeDxe/Reset.inf
|
| 378 | $(WORKSPACE)/MdeModulePkg/Universal/RuntimeDxe/Runtime.inf
|
| 379 | $(WORKSPACE)/Nt32Pkg/FvbServicesRuntimeDxe/Nt32Fwh.inf
|
lgao4 | 9921414 | 2007-07-02 08:40:26 +0000 | [diff] [blame] | 380 | $(WORKSPACE)/MdeModulePkg/Universal/SecurityStubDxe/SecurityStub.inf
|
klu2 | 04eced5 | 2007-07-06 14:56:41 +0000 | [diff] [blame] | 381 | $(WORKSPACE)/IntelFrameworkModulePkg/Universal/DataHub/DataHub/Dxe/DataHub.inf
|
lgao4 | 9921414 | 2007-07-02 08:40:26 +0000 | [diff] [blame] | 382 | $(WORKSPACE)/MdeModulePkg/Universal/Ebc/Dxe/Ebc.inf
|
| 383 | $(WORKSPACE)/MdeModulePkg/Universal/GenericMemoryTest/Dxe/NullMemoryTest.inf
|
klu2 | 04eced5 | 2007-07-06 14:56:41 +0000 | [diff] [blame] | 384 | $(WORKSPACE)/IntelFrameworkModulePkg/Universal/HiiDataBaseDxe/HiiDatabase.inf
|
| 385 | $(WORKSPACE)/Nt32Pkg/WinNtThunkDxe/WinNtThunk.inf
|
| 386 | $(WORKSPACE)/MdeModulePkg/Universal/FirmwareVolume/GuidedSectionExtraction/Crc32SectionExtract/Dxe/Crc32SectionExtract.inf
|
| 387 | $(WORKSPACE)/Nt32Pkg/CpuRuntimeDxe/Cpu.inf
|
| 388 | $(WORKSPACE)/Nt32Pkg/PlatformBdsDxe/PlatformBds.inf
|
| 389 | $(WORKSPACE)/MdeModulePkg/Universal/FirmwareVolume/FaultTolerantWriteLite/Dxe/FtwLite.inf
|
qhuang8 | 6ec032f | 2007-06-28 14:21:17 +0000 | [diff] [blame] | 390 | $(WORKSPACE)/IntelFrameworkModulePkg/Universal/DataHub/DataHubStdErr/Dxe/DataHubStdErr.inf
|
klu2 | 04eced5 | 2007-07-06 14:56:41 +0000 | [diff] [blame] | 391 | $(WORKSPACE)/Nt32Pkg/MiscSubClassPlatformDxe/MiscSubclassDriver.inf
|
| 392 | $(WORKSPACE)/Nt32Pkg/TimerDxe/Timer.inf
|
| 393 | $(WORKSPACE)/IntelFrameworkModulePkg/Universal/StatusCode/Dxe/DxeStatusCode.inf
|
| 394 | $(WORKSPACE)/MdeModulePkg/Universal/VariableRuntimeDxe/Variable.inf
|
| 395 | $(WORKSPACE)/MdeModulePkg/Universal/WatchDogTimerDxe/WatchDogTimer.inf
|
| 396 | $(WORKSPACE)/MdeModulePkg/Universal/MonotonicCounterDxe/MonotonicCounter.inf
|
| 397 | $(WORKSPACE)/MdeModulePkg/Universal/Capsule/RuntimeDxe/CapsuleRuntime.inf
|
klu2 | 56a71b5 | 2007-07-05 15:27:43 +0000 | [diff] [blame] | 398 | $(WORKSPACE)/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatform.inf
|
| 399 | $(WORKSPACE)/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitter.inf
|
klu2 | 04eced5 | 2007-07-06 14:56:41 +0000 | [diff] [blame] | 400 | $(WORKSPACE)/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.inf
|
klu2 | 56a71b5 | 2007-07-05 15:27:43 +0000 | [diff] [blame] | 401 | $(WORKSPACE)/MdeModulePkg/Universal/Console/TerminalDxe/Terminal.inf
|
klu2 | 04eced5 | 2007-07-06 14:56:41 +0000 | [diff] [blame] | 402 | $(WORKSPACE)/MdeModulePkg/Universal/DevicePathDxe/DevicePath.inf
|
| 403 | $(WORKSPACE)/MdeModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.inf
|
| 404 | $(WORKSPACE)/MdeModulePkg/Universal/Disk/Partition/Dxe/Partition.inf
|
| 405 | $(WORKSPACE)/IntelFrameworkModulePkg/Universal/SetupBrowserDxe/SetupBrowser.inf
|
| 406 | $(WORKSPACE)/MdeModulePkg/Universal/Disk/UnicodeCollation/English/Dxe/English.inf
|
| 407 | $(WORKSPACE)/MdeModulePkg/Bus/Pci/AtapiPassThruDxe/AtapiPassThru.inf
|
| 408 | $(WORKSPACE)/IntelFrameworkModulePkg/Bus/Pci/PciBus/Dxe/PciBus.inf
|
| 409 | $(WORKSPACE)/MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBus.inf ##This driver follows UEFI specification definition
|
| 410 | $(WORKSPACE)/MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDisk.inf ##This driver follows UEFI specification definition
|
| 411 | $(WORKSPACE)/IntelFrameworkModulePkg/Bus/Pci/IdeBus/Dxe/IdeBus.inf
|
| 412 | $(WORKSPACE)/MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBus.inf
|
| 413 | $(WORKSPACE)/MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDisk.inf
|
| 414 | $(WORKSPACE)/Nt32Pkg/WinNtBusDriverDxe/WinNtBusDriver.inf
|
| 415 | $(WORKSPACE)/Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIo.inf
|
| 416 | $(WORKSPACE)/Nt32Pkg/WinNtConsoleDxe/WinNtConsole.inf
|
| 417 | $(WORKSPACE)/Nt32Pkg/WinNtSerialIoDxe/WinNtSerialIo.inf
|
| 418 | $(WORKSPACE)/Nt32Pkg/WinNtGopDxe/WinNtGop.inf
|
| 419 | $(WORKSPACE)/Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystem.inf
|
| 420 | $(WORKSPACE)/IntelFrameworkModulePkg/Universal/DriverSampleDxe/DriverSample.inf
|
| 421 | $(WORKSPACE)/MdeModulePkg/Application/HelloWorld/HelloWorld.inf
|
klu2 | 6fa9d09 | 2007-07-06 08:25:28 +0000 | [diff] [blame] | 422 |
|
jwang36 | 2cb630b | 2007-07-06 07:41:51 +0000 | [diff] [blame] | 423 | [BuildOptions]
|
| 424 | MSFT:DEBUG_*_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
|
| 425 | MSFT:RELEASE_*_IA32_DLINK_FLAGS = /ALIGN:4096
|