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
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +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
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 75 | FvbServiceLib|${WORKSPACE}/MdeModulePkg/Library/EdkFvbServiceLib/EdkFvbServiceLib.inf
|
| 76 | IoLib|$(WORKSPACE)/MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
|
xgu3 | 9527612 | 2007-07-05 07:05: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 | 28ea281 | 2007-07-05 15:41:41 +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 | 7d421cf | 2007-07-06 03:54:26 +0000 | [diff] [blame^] | 96 | PeCoffLoaderLib|$(WORKSPACE)/MdeModulePkg/Library/PeiDxePeCoffLoaderLib/PeCoffLoaderLib.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 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 109 | PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 110 | MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 111 | UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
|
klu2 | de4c8a3 | 2007-06-28 08:36:46 +0000 | [diff] [blame] | 112 | ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 113 | UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 114 | WinNtLib|$(WORKSPACE)/Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
|
| 115 | OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
|
| 116 | PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
AJFISH | d695558 | 2007-07-05 22:17:00 +0000 | [diff] [blame] | 117 | DebugLib|$(WORKSPACE)/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 118 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 119 | [LibraryClasses.common.PEIM]
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 120 | HobLib|$(WORKSPACE)/MdePkg/Library/PeiHobLib/PeiHobLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 121 | PcdLib|$(WORKSPACE)/MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
|
| 122 | IoLib|$(WORKSPACE)/MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 123 | PeimEntryPoint|$(WORKSPACE)/MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
|
| 124 | PeiServicesLib|$(WORKSPACE)/MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 125 | MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
vanjeff | 5520659 | 2007-07-02 03:11:11 +0000 | [diff] [blame] | 126 | ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
klu2 | 56a71b5 | 2007-07-05 15:27:43 +0000 | [diff] [blame] | 127 | PeCoffLoaderLib|$(WORKSPACE)/Nt32Pkg/Library/Nt32PeCoffLoaderLib/Nt32PeCoffLoaderLib.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 128 | PeiServicesTablePointerLib|$(WORKSPACE)/MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
|
| 129 | OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/PeiNt32OemHookStatusCodeLib.inf
|
| 130 | PeCoffGetEntryPointLib|$(WORKSPACE)/Nt32Pkg/Library/EdkNt32PeiPeCoffGetEntryPointLib/EdkNt32PeiPeCoffGetEntryPointLib.inf
|
AJFISH | d695558 | 2007-07-05 22:17:00 +0000 | [diff] [blame] | 131 | DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 132 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 133 | [LibraryClasses.common.PEI_CORE]
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 134 | HobLib|$(WORKSPACE)/MdePkg/Library/PeiHobLib/PeiHobLib.inf
|
| 135 | PeiServicesTablePointerLib|$(WORKSPACE)/MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 136 | IoLib|$(WORKSPACE)/MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 137 | PeiServicesLib|$(WORKSPACE)/MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
|
| 138 | MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
| 139 | PeiCoreEntryPoint|$(WORKSPACE)/MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
|
klu2 | 2e7a663 | 2007-07-05 09:41:22 +0000 | [diff] [blame] | 140 | OldPeiCoreEntryPoint|$(WORKSPACE)/MdePkg/Library/OldPeiCoreEntryPoint/OldPeiCoreEntryPoint.inf
|
vanjeff | 5520659 | 2007-07-02 03:11:11 +0000 | [diff] [blame] | 141 | ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 142 | PeCoffGetEntryPointLib|$(WORKSPACE)/Nt32Pkg/Library/EdkNt32PeiPeCoffGetEntryPointLib/EdkNt32PeiPeCoffGetEntryPointLib.inf
|
AJFISH | d695558 | 2007-07-05 22:17:00 +0000 | [diff] [blame] | 143 | PcdLib|$(WORKSPACE)/MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
|
| 144 | DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 145 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 146 | [LibraryClasses.common.DXE_RUNTIME_DRIVER]
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 147 | UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
| 148 | HobLib|$(WORKSPACE)/MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 149 | PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 150 | MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
|
| 151 | UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
|
| 152 | UefiDriverEntryPoint|$(WORKSPACE)/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
|
klu2 | de4c8a3 | 2007-06-28 08:36:46 +0000 | [diff] [blame] | 153 | ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 154 | DxeServicesTableLib|$(WORKSPACE)/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
| 155 | UefiDecompressLib|$(WORKSPACE)/MdeModulePkg/Library/DxeCoreUefiDecompressLibFromHob/DxeCoreUefiDecompressLibFromHob.inf
|
qwang12 | 29aa45b | 2007-06-29 08:47:14 +0000 | [diff] [blame] | 156 | HiiLibFramework|$(WORKSPACE)/IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 157 | UefiBootServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
| 158 | DevicePathLib|$(WORKSPACE)/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 159 | UefiRuntimeLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
|
klu2 | 3a10d47 | 2007-06-29 03:33:17 +0000 | [diff] [blame] | 160 | ScsiLib|$(WORKSPACE)/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 161 | UefiDriverModelLib|$(WORKSPACE)/MdePkg/Library/UefiDriverModelLib/UefiDriverModelLib.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 162 | WinNtLib|$(WORKSPACE)/Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
|
| 163 | OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
|
AJFISH | d695558 | 2007-07-05 22:17:00 +0000 | [diff] [blame] | 164 | DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 165 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 166 | [LibraryClasses.common.UEFI_DRIVER]
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 167 | UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
| 168 | HobLib|$(WORKSPACE)/MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 169 | PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 170 | MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
|
| 171 | UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
|
| 172 | UefiDriverEntryPoint|$(WORKSPACE)/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
|
klu2 | de4c8a3 | 2007-06-28 08:36:46 +0000 | [diff] [blame] | 173 | ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 174 | DxeServicesTableLib|$(WORKSPACE)/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
| 175 | UefiDecompressLib|$(WORKSPACE)/MdeModulePkg/Library/DxeCoreUefiDecompressLibFromHob/DxeCoreUefiDecompressLibFromHob.inf
|
qwang12 | 29aa45b | 2007-06-29 08:47:14 +0000 | [diff] [blame] | 176 | HiiLibFramework|$(WORKSPACE)/IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 177 | UefiBootServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
| 178 | DevicePathLib|$(WORKSPACE)/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
klu2 | 3a10d47 | 2007-06-29 03:33:17 +0000 | [diff] [blame] | 179 | ScsiLib|$(WORKSPACE)/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 180 | UefiDriverModelLib|$(WORKSPACE)/MdePkg/Library/UefiDriverModelLib/UefiDriverModelLib.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 181 | WinNtLib|$(WORKSPACE)/Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
|
| 182 | OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
|
AJFISH | d695558 | 2007-07-05 22:17:00 +0000 | [diff] [blame] | 183 | DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 184 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 185 | [LibraryClasses.common.DXE_DRIVER]
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 186 | UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
| 187 | HobLib|$(WORKSPACE)/MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 188 | PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 189 | MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
|
| 190 | UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
|
| 191 | UefiDriverEntryPoint|$(WORKSPACE)/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
|
klu2 | de4c8a3 | 2007-06-28 08:36:46 +0000 | [diff] [blame] | 192 | ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 193 | DxeServicesTableLib|$(WORKSPACE)/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
| 194 | UefiDecompressLib|$(WORKSPACE)/MdeModulePkg/Library/DxeCoreUefiDecompressLibFromHob/DxeCoreUefiDecompressLibFromHob.inf
|
qwang12 | 29aa45b | 2007-06-29 08:47:14 +0000 | [diff] [blame] | 195 | HiiLibFramework|$(WORKSPACE)/IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 196 | UefiBootServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
| 197 | DevicePathLib|$(WORKSPACE)/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
klu2 | 3a10d47 | 2007-06-29 03:33:17 +0000 | [diff] [blame] | 198 | ScsiLib|$(WORKSPACE)/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 199 | UefiDriverModelLib|$(WORKSPACE)/MdePkg/Library/UefiDriverModelLib/UefiDriverModelLib.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 200 | WinNtLib|$(WORKSPACE)/Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
|
| 201 | OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
|
| 202 | EdkGenericBdsLib|$(WORKSPACE)/Nt32Pkg/Library/EdkGenericBdsLib/EdkGenericBdsLib.inf
|
AJFISH | d695558 | 2007-07-05 22:17:00 +0000 | [diff] [blame] | 203 | DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 204 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 205 | [LibraryClasses.common.UEFI_APPLICATION]
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 206 | DxeServicesTableLib|$(WORKSPACE)/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
klu2 | 3a10d47 | 2007-06-29 03:33:17 +0000 | [diff] [blame] | 207 | ScsiLib|$(WORKSPACE)/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 208 | UefiDecompressLib|$(WORKSPACE)/MdeModulePkg/Library/DxeCoreUefiDecompressLibFromHob/DxeCoreUefiDecompressLibFromHob.inf
|
qwang12 | 29aa45b | 2007-06-29 08:47:14 +0000 | [diff] [blame] | 209 | HiiLibFramework|$(WORKSPACE)/IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 210 | UefiApplicationEntryPoint|$(WORKSPACE)/MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
|
| 211 | UefiBootServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
| 212 | HobLib|$(WORKSPACE)/MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
| 213 | DevicePathLib|$(WORKSPACE)/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
| 214 | EdkIfrSupportLib|$(WORKSPACE)/MdeModulePkg/Library/EdkIfrSupportLib/EdkIfrSupportLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 215 | PcdLib|$(WORKSPACE)/MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 216 | MemoryAllocationLib|$(WORKSPACE)/MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 217 | UefiLib|$(WORKSPACE)/MdePkg/Library/UefiLib/UefiLib.inf
|
klu2 | de4c8a3 | 2007-06-28 08:36:46 +0000 | [diff] [blame] | 218 | ReportStatusCodeLib|$(WORKSPACE)/IntelFrameworkPkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 219 | UefiRuntimeServicesTableLib|$(WORKSPACE)/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 220 | WinNtLib|$(WORKSPACE)/Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
|
| 221 | OemHookStatusCodeLib|$(WORKSPACE)/Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
|
AJFISH | d695558 | 2007-07-05 22:17:00 +0000 | [diff] [blame] | 222 | DebugLib|$(WORKSPACE)/IntelFrameworkPkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
|
vanjeff | 4cf1c1b | 2007-06-28 15:16:51 +0000 | [diff] [blame] | 223 |
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 224 |
|
| 225 | ################################################################################
|
| 226 | #
|
| 227 | # Pcd Section - list of all EDK II PCD Entries defined by this Platform
|
| 228 | #
|
| 229 | ################################################################################
|
| 230 |
|
xgu3 | 9527612 | 2007-07-05 07:05:28 +0000 | [diff] [blame] | 231 | [PcdsFeatureFlag.common]
|
| 232 | PcdDevicePathSupportDevicePathFromText|gEfiEdkModulePkgTokenSpaceGuid|FALSE
|
| 233 | PcdDevicePathSupportDevicePathToText|gEfiEdkModulePkgTokenSpaceGuid|FALSE
|
| 234 | PcdDxeIplSupportCustomDecompress|gEfiEdkModulePkgTokenSpaceGuid|TRUE
|
| 235 | PcdDxeIplBuildShareCodeHobs|gEfiEdkModulePkgTokenSpaceGuid|FALSE
|
| 236 | PcdDxeIplSupportEfiDecompress|gEfiEdkModulePkgTokenSpaceGuid|TRUE
|
| 237 | PcdDxeIplSupportTianoDecompress|gEfiEdkModulePkgTokenSpaceGuid|TRUE
|
| 238 | PcdDxeIplSupportCustomDecompress|gEfiEdkModulePkgTokenSpaceGuid|TRUE
|
| 239 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 240 | [PcdsPatchableInModule.IA32]
|
vanjeff | 5520659 | 2007-07-02 03:11:11 +0000 | [diff] [blame] | 241 | PcdStatusCodeMemorySize|gEfiIntelFrameworkModulePkgTokenSpaceGuid|1
|
| 242 | PcdStatusCodeRuntimeMemorySize|gEfiIntelFrameworkModulePkgTokenSpaceGuid|128
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 243 |
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 244 | [PcdsFixedAtBuild.IA32]
|
klu2 | 2e19fd0 | 2007-07-03 09:18:19 +0000 | [diff] [blame] | 245 | PcdWinNtMemorySizeForSecMain|gEfiNt32PkgTokenSpaceGuid|L"64!64"|10
|
| 246 | PcdWinNtFirmwareVolume|gEfiNt32PkgTokenSpaceGuid|L"..\\Fv\\Fv_Recovery.fd"|52
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 247 | PcdWinNtBootMode|gEfiNt32PkgTokenSpaceGuid|1
|
| 248 | PcdMaximumUnicodeStringLength|gEfiMdePkgTokenSpaceGuid|1000000
|
| 249 | PcdMaximumAsciiStringLength|gEfiMdePkgTokenSpaceGuid|1000000
|
| 250 | PcdMaximumLinkedListLength|gEfiMdePkgTokenSpaceGuid|1000000
|
| 251 | PcdSpinLockTimeout|gEfiMdePkgTokenSpaceGuid|10000000
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 252 | PcdMaximumAsciiStringLength|gEfiMdePkgTokenSpaceGuid|1000000
|
| 253 | PcdMaximumLinkedListLength|gEfiMdePkgTokenSpaceGuid|1000000
|
| 254 | PcdSpinLockTimeout|gEfiMdePkgTokenSpaceGuid|10000000
|
klu2 | 7d421cf | 2007-07-06 03:54:26 +0000 | [diff] [blame^] | 255 | PcdReportStatusCodePropertyMask|gEfiMdePkgTokenSpaceGuid|0x0f
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 256 | PcdDebugPropertyMask|gEfiMdePkgTokenSpaceGuid|0x1f
|
| 257 | PcdDebugClearMemoryValue|gEfiMdePkgTokenSpaceGuid|0xAF
|
klu2 | 56a71b5 | 2007-07-05 15:27:43 +0000 | [diff] [blame] | 258 | PcdDebugPrintErrorLevel|gEfiMdePkgTokenSpaceGuid|0x80000040
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 259 | PcdPerformanceLibraryPropertyMask|gEfiMdePkgTokenSpaceGuid|0
|
| 260 | PcdMaxPeiPcdCallBackNumberPerPcdEntry|gEfiMdeModulePkgTokenSpaceGuid|0x08
|
vanjeff | efb6503 | 2007-07-03 10:04:45 +0000 | [diff] [blame] | 261 | PcdVpdBaseAddress|gEfiEdkModulePkgTokenSpaceGuid|0x0
|
qhuang8 | 30d4a0c | 2007-06-28 06:23:38 +0000 | [diff] [blame] | 262 | PcdMaxSizeNonPopulateCapsule|gEfiEdkModulePkgTokenSpaceGuid|0x0
|
| 263 | PcdMaxSizePopulateCapsule|gEfiEdkModulePkgTokenSpaceGuid|0x0
|
qhuang8 | 35ccc74 | 2007-06-29 08:10:42 +0000 | [diff] [blame] | 264 | PcdPciIncompatibleDeviceSupportMask|gEfiIntelFrameworkModulePkgTokenSpaceGuid|0
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 265 |
|
| 266 | [PcdsFeatureFlag.IA32]
|
vanjeff | 2ff82e8 | 2007-07-03 10:08:09 +0000 | [diff] [blame] | 267 | PcdPeiPcdDatabaseTraverseEnabled|gEfiEdkModulePkgTokenSpaceGuid|TRUE
|
| 268 | PcdPeiPcdDatabaseCallbackOnSetEnabled|gEfiEdkModulePkgTokenSpaceGuid|TRUE
|
| 269 | PcdPeiPcdDatabaseExEnabled|gEfiEdkModulePkgTokenSpaceGuid|TRUE
|
| 270 | PcdPeiPcdDatabaseGetSizeEnabled|gEfiEdkModulePkgTokenSpaceGuid|TRUE
|
| 271 | PcdPeiPcdDatabaseSetEnabled|gEfiEdkModulePkgTokenSpaceGuid|TRUE
|
vanjeff | 5520659 | 2007-07-02 03:11:11 +0000 | [diff] [blame] | 272 | PcdStatusCodeUseSerial|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 273 | PcdStatusCodeUseMemory|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 274 | PcdStatusCodeUseOEM|gEfiIntelFrameworkModulePkgTokenSpaceGuid|TRUE
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 275 | PcdDxeIplSwitchToLongMode|gEfiMdeModulePkgTokenSpaceGuid|FALSE
|
| 276 | PcdDxeIplSupportEfiDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
| 277 | PcdDxeIplSupportTianoDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
| 278 | PcdDxeIplSupportCustomDecompress|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
| 279 | PcdDxeIplBuildShareCodeHobs|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
vanjeff | 2ff82e8 | 2007-07-03 10:08:09 +0000 | [diff] [blame] | 280 | PcdDxePcdDatabaseTraverseEnabled|gEfiEdkModulePkgTokenSpaceGuid|TRUE
|
vanjeff | 5520659 | 2007-07-02 03:11:11 +0000 | [diff] [blame] | 281 | PcdStatusCodeUseHardSerial|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 282 | PcdStatusCodeUseEfiSerial|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 283 | PcdStatusCodeUseRuntimeMemory|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 284 | PcdStatusCodeUseDataHub|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 285 | PcdStatusCodeUseOEM|gEfiIntelFrameworkModulePkgTokenSpaceGuid|TRUE
|
| 286 | PcdStatusCodeReplayInSerial|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 287 | PcdStatusCodeReplayInDataHub|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 288 | PcdStatusCodeReplayInRuntimeMemory|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 289 | PcdStatusCodeReplayInOEM|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 290 | PcdSupportUpdateCapsuleRest|gEfiMdeModulePkgTokenSpaceGuid|FALSE
|
| 291 | PcdComponentNameDisable|gEfiMdePkgTokenSpaceGuid|FALSE
|
| 292 | PcdDriverDiagnosticsDisable|gEfiMdePkgTokenSpaceGuid|FALSE
|
| 293 | PcdNtEmulatorEnable|gEfiMdeModulePkgTokenSpaceGuid|FALSE
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 294 | PcdDevicePathSupportDevicePathToText|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
| 295 | PcdDevicePathSupportDevicePathFromText|gEfiMdeModulePkgTokenSpaceGuid|TRUE
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 296 | PcdPciBusHotplugDeviceSupport|gEfiGenericPlatformTokenSpaceGuid|TRUE
|
klu2 | 869f8e3 | 2007-06-26 09:35:19 +0000 | [diff] [blame] | 297 | PcdComponentName2Disable|gEfiMdePkgTokenSpaceGuid|TRUE
|
| 298 | PcdUefiLibMaxPrintBufferSize|gEfiMdePkgTokenSpaceGuid|320
|
| 299 | PcdDriverDiagnostics2Disable|gEfiMdePkgTokenSpaceGuid|TRUE
|
qhuang8 | 30d4a0c | 2007-06-28 06:23:38 +0000 | [diff] [blame] | 300 | PcdSupportUpdateCapsuleRest|gEfiEdkModulePkgTokenSpaceGuid|FALSE
|
qhuang8 | 35ccc74 | 2007-06-29 08:10:42 +0000 | [diff] [blame] | 301 | PcdPciIsaEnable|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 302 | PcdPciVgaEnable|gEfiIntelFrameworkModulePkgTokenSpaceGuid|FALSE
|
| 303 | PcdPciBusHotplugDeviceSupport|gEfiIntelFrameworkModulePkgTokenSpaceGuid|TRUE
|
AJFISH | ba23773 | 2007-07-03 18:34:24 +0000 | [diff] [blame] | 304 | PcdStatusCodeValueEfiWatchDogTimerExpired|gEfiMdePkgTokenSpaceGuid|0x00011003
|
| 305 | PcdStatusCodeValueMemoryTestStarted|gEfiMdePkgTokenSpaceGuid|0x00051006
|
| 306 | PcdStatusCodeValueSetVirtualAddressMap|gEfiMdePkgTokenSpaceGuid|0x03101004
|
| 307 | PcdStatusCodeValueUncorrectableMemoryError|gEfiMdePkgTokenSpaceGuid|0x00051003
|
| 308 |
|
| 309 |
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 310 |
|
| 311 | ################################################################################
|
| 312 | #
|
| 313 | # Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
|
| 314 | #
|
| 315 | ################################################################################
|
| 316 |
|
klu2 | ab7136a | 2007-07-06 02:36:29 +0000 | [diff] [blame] | 317 | [PcdsDynamicDefault.common]
|
klu2 | 25a201c | 2007-06-26 08:15:15 +0000 | [diff] [blame] | 318 | PcdFlashNvStorageFtwSpareBase|gEfiGenericPlatformTokenSpaceGuid|0x0
|
| 319 | PcdFlashNvStorageVariableSize|gEfiGenericPlatformTokenSpaceGuid|0x0
|
| 320 | PcdWinNtCpuSpeed|gEfiNt32PkgTokenSpaceGuid|L"3000"|8
|
| 321 | PcdFlashNvStorageVariableBase|gEfiGenericPlatformTokenSpaceGuid|0x0
|
| 322 | PcdWinNtSerialPort|gEfiNt32PkgTokenSpaceGuid|L"COM1!COM2"|18
|
| 323 | PcdWinNtFileSystem|gEfiNt32PkgTokenSpaceGuid|L".!..\\..\\..\\..\\EdkShellBinPkg\\bin\\ia32\\Apps"|106
|
| 324 | PcdFlashNvStorageFtwWorkingSize|gEfiGenericPlatformTokenSpaceGuid|0x0
|
| 325 | PcdWinNtGop|gEfiNt32PkgTokenSpaceGuid|L"UGA Window 1!UGA Window 2"|50
|
| 326 | PcdWinNtConsole|gEfiNt32PkgTokenSpaceGuid|L"Bus Driver Console Window"|50
|
| 327 | PcdFlashNvStorageFtwWorkingBase|gEfiGenericPlatformTokenSpaceGuid|0x0
|
| 328 | PcdWinNtMemorySize|gEfiNt32PkgTokenSpaceGuid|L"64!64"|10
|
| 329 | PcdWinNtVirtualDisk|gEfiNt32PkgTokenSpaceGuid|L"FW;40960;512"|24
|
| 330 | PcdWinNtCpuModel|gEfiNt32PkgTokenSpaceGuid|L"Intel(R) Processor Model"|48
|
| 331 | PcdWinNtPhysicalDisk|gEfiNt32PkgTokenSpaceGuid|L"E:RW;245760;512"|30
|
| 332 | PcdFlashNvStorageFtwSpareSize|gEfiGenericPlatformTokenSpaceGuid|0x0
|
| 333 | PcdWinNtUga|gEfiNt32PkgTokenSpaceGuid|L"UGA Window 1!UGA Window 2"|50
|
| 334 |
|
| 335 | ################################################################################
|
| 336 | #
|
| 337 | # Components Section - list of all EDK II Modules needed by this Platform
|
| 338 | #
|
| 339 | ################################################################################
|
| 340 |
|
| 341 | [Components.IA32]
|
lgao4 | 9921414 | 2007-07-02 08:40:26 +0000 | [diff] [blame] | 342 | $(WORKSPACE)/Nt32Pkg/BootModePei/BootMode.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 343 | $(WORKSPACE)/Nt32Pkg/WinNtThunkDxe/WinNtThunk.inf
|
vanjeff | dd356cc | 2007-07-03 06:07:51 +0000 | [diff] [blame] | 344 | $(WORKSPACE)/Nt32Pkg/MiscSubClassPlatformDxe/MiscSubclassDriver.inf
|
qhuang8 | 6ec032f | 2007-06-28 14:21:17 +0000 | [diff] [blame] | 345 | $(WORKSPACE)/Nt32Pkg/WinNtThunkPPIToProtocolPei/WinNtThunkPPIToProtocol.inf
|
| 346 | $(WORKSPACE)/Nt32Pkg/WinNtAutoScanPei/WinNtAutoScan.inf
|
| 347 | $(WORKSPACE)/Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIo.inf
|
| 348 | $(WORKSPACE)/Nt32Pkg/WinNtBusDriverDxe/WinNtBusDriver.inf
|
| 349 | $(WORKSPACE)/Nt32Pkg/WinNtConsoleDxe/WinNtConsole.inf
|
| 350 | $(WORKSPACE)/Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystem.inf
|
| 351 | $(WORKSPACE)/Nt32Pkg/WinNtGopDxe/WinNtGop.inf
|
| 352 | $(WORKSPACE)/Nt32Pkg/WinNtSerialIoDxe/WinNtSerialIo.inf
|
| 353 | $(WORKSPACE)/Nt32Pkg/TimerDxe/Timer.inf
|
| 354 | $(WORKSPACE)/Nt32Pkg/ResetRuntimeDxe/Reset.inf
|
| 355 | $(WORKSPACE)/Nt32Pkg/RealTimeClockRuntimeDxe/RealTimeClock.inf
|
qwang12 | 1897b70 | 2007-07-03 02:34:30 +0000 | [diff] [blame] | 356 | $(WORKSPACE)/Nt32Pkg/MetronomeDxe/Metronome.inf
|
qwang12 | 29aa45b | 2007-06-29 08:47:14 +0000 | [diff] [blame] | 357 | $(WORKSPACE)/Nt32Pkg/CpuRuntimeDxe/Cpu.inf
|
klu2 | c53dbcf | 2007-06-27 09:18:20 +0000 | [diff] [blame] | 358 | $(WORKSPACE)/Nt32Pkg/FvbServicesRuntimeDxe/Nt32Fwh.inf
|
qwang12 | 131d866 | 2007-07-03 12:44:02 +0000 | [diff] [blame] | 359 | $(WORKSPACE)/Nt32Pkg/PlatformBdsDxe/PlatformBds.inf
|
lgao4 | 9921414 | 2007-07-02 08:40:26 +0000 | [diff] [blame] | 360 | $(WORKSPACE)/MdeModulePkg/Application/HelloWorld/HelloWorld.inf
|
| 361 | $(WORKSPACE)/MdeModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.inf
|
| 362 | $(WORKSPACE)/MdeModulePkg/Universal/Disk/Partition/Dxe/Partition.inf
|
| 363 | $(WORKSPACE)/MdeModulePkg/Universal/Disk/UnicodeCollation/English/Dxe/English.inf
|
| 364 | $(WORKSPACE)/MdeModulePkg/Universal/SecurityStubDxe/SecurityStub.inf
|
| 365 | $(WORKSPACE)/MdeModulePkg/Universal/Capsule/RuntimeDxe/CapsuleRuntime.inf
|
| 366 | $(WORKSPACE)/MdeModulePkg/Universal/Ebc/Dxe/Ebc.inf
|
| 367 | $(WORKSPACE)/MdeModulePkg/Universal/GenericMemoryTest/Dxe/NullMemoryTest.inf
|
| 368 | $(WORKSPACE)/MdeModulePkg/Universal/FirmwareVolume/FaultTolerantWriteLite/Dxe/FtwLite.inf
|
| 369 | $(WORKSPACE)/MdeModulePkg/Universal/BaseMemoryTestPei/BaseMemoryTest.inf
|
| 370 | $(WORKSPACE)/MdeModulePkg/Universal/FirmwareVolume/GuidedSectionExtraction/Crc32SectionExtract/Dxe/Crc32SectionExtract.inf
|
| 371 | $(WORKSPACE)/MdeModulePkg/Universal/VariableRuntimeDxe/Variable.inf
|
| 372 | $(WORKSPACE)/MdeModulePkg/Universal/RuntimeDxe/Runtime.inf
|
lgao4 | 29afc51 | 2007-07-03 03:25:43 +0000 | [diff] [blame] | 373 | $(WORKSPACE)/MdeModulePkg/Bus/Pci/AtapiPassThruDxe/AtapiPassThru.inf
|
lgao4 | 9921414 | 2007-07-02 08:40:26 +0000 | [diff] [blame] | 374 | $(WORKSPACE)/MdeModulePkg/Universal/WatchDogTimerDxe/WatchDogTimer.inf
|
| 375 | $(WORKSPACE)/MdeModulePkg/Universal/VariablePei/Variable.inf
|
| 376 | $(WORKSPACE)/MdeModulePkg/Universal/VariableRuntimeDxe/Variable.inf
|
| 377 | $(WORKSPACE)/MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBus.inf
|
| 378 | $(WORKSPACE)/MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDisk.inf
|
vanjeff | efb6503 | 2007-07-03 10:04:45 +0000 | [diff] [blame] | 379 | # $(WORKSPACE)/MdeModulePkg/Universal/PCD/Dxe/Pcd.inf
|
| 380 | # $(WORKSPACE)/MdeModulePkg/Universal/PCD/Pei/Pcd.inf
|
klu2 | 2e7a663 | 2007-07-05 09:41:22 +0000 | [diff] [blame] | 381 | # $(WORKSPACE)/IntelFrameworkModulePkg/Bus/Pci/PciBus/Dxe/PciBus.inf
|
qhuang8 | 6ec032f | 2007-06-28 14:21:17 +0000 | [diff] [blame] | 382 | $(WORKSPACE)/IntelFrameworkModulePkg/Bus/Pci/IdeBus/Dxe/IdeBus.inf
|
| 383 | $(WORKSPACE)/IntelFrameworkModulePkg/Universal/DataHub/DataHub/Dxe/DataHub.inf
|
| 384 | $(WORKSPACE)/IntelFrameworkModulePkg/Universal/DataHub/DataHubStdErr/Dxe/DataHubStdErr.inf
|
vanjeff | ecd9cd1 | 2007-07-02 07:28:50 +0000 | [diff] [blame] | 385 | $(WORKSPACE)/IntelFrameworkModulePkg/Universal/StatusCode/Dxe/DxeStatusCode.inf
|
| 386 | $(WORKSPACE)/IntelFrameworkModulePkg/Universal/StatusCode/Pei/PeiStatusCode.inf
|
vanjeff | 35fec2c | 2007-07-02 05:52:03 +0000 | [diff] [blame] | 387 | $(WORKSPACE)/IntelFrameworkModulePkg/Universal/HiiDataBaseDxe/HiiDatabase.inf
|
| 388 | $(WORKSPACE)/IntelFrameworkModulePkg/Universal/SetupBrowserDxe/SetupBrowser.inf
|
vanjeff | 6d2b4f2 | 2007-07-03 05:30:36 +0000 | [diff] [blame] | 389 | $(WORKSPACE)/IntelFrameworkModulePkg/Universal/DriverSampleDxe/DriverSample.inf
|
lgao4 | 9921414 | 2007-07-02 08:40:26 +0000 | [diff] [blame] | 390 | $(WORKSPACE)/MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBus.inf ##This driver follows UEFI specification definition
|
qwang12 | 1897b70 | 2007-07-03 02:34:30 +0000 | [diff] [blame] | 391 | $(WORKSPACE)/MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDisk.inf ##This driver follows UEFI specification definition
|
klu2 | 192f6d4 | 2007-07-04 07:51:48 +0000 | [diff] [blame] | 392 | $(WORKSPACE)/Nt32Pkg/Sec/SecMain.inf
|
| 393 | $(WORKSPACE)/MdeModulePkg/Core/Pei/PeiMain.inf
|
klu2 | 56a71b5 | 2007-07-05 15:27:43 +0000 | [diff] [blame] | 394 | $(WORKSPACE)/MdeModulePkg/Core/Dxe/DxeMain.inf
|
| 395 | $(WORKSPACE)/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatform.inf
|
| 396 | $(WORKSPACE)/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitter.inf
|
| 397 | $(WORKSPACE)/MdeModulePkg/Universal/DevicePathDxe/DevicePath.inf
|
| 398 | $(WORKSPACE)/MdeModulePkg/Universal/Console/TerminalDxe/Terminal.inf
|
| 399 | $(WORKSPACE)/MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
|
| 400 | $(WORKSPACE)/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.inf
|
| 401 | $(WORKSPACE)/Nt32Pkg/WinNtFlashMapPei/FlashMap.inf
|
| 402 | $(WORKSPACE)/Nt32Pkg/WinNtFirmwareVolumePei/WinNtFwh.inf |