]>
Commit | Line | Data |
---|---|---|
7b202cb0 | 1 | ## @file\r |
5fd5fcd3 | 2 | # EFI/Framework Emulation Platform with UEFI HII interface supported.\r |
25a201c6 | 3 | #\r |
4 | # The Emulation Platform can be used to debug individual modules, prior to creating\r | |
d10385cd | 5 | # a real platform. This also provides an example for how an DSC is created.\r |
25a201c6 | 6 | #\r |
70dc0b80 | 7 | # Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>\r |
c4a5d3f1 | 8 | # Copyright (c) 2015, Hewlett-Packard Development Company, L.P.<BR>\r |
4e502412 | 9 | # (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>\r |
25a201c6 | 10 | #\r |
8f2a5f80 | 11 | # This program and the accompanying materials\r |
25a201c6 | 12 | # are licensed and made available under the terms and conditions of the BSD License\r |
13 | # which accompanies this distribution. The full text of the license may be found at\r | |
ef0028a2 | 14 | # http://opensource.org/licenses/bsd-license.php\r |
4cf1c1b5 | 15 | #\r |
25a201c6 | 16 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r |
17 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
18 | #\r | |
7b202cb0 | 19 | ##\r |
25a201c6 | 20 | \r |
21 | ################################################################################\r | |
22 | #\r | |
23 | # Defines Section - statements that will be processed to create a Makefile.\r | |
24 | #\r | |
25 | ################################################################################\r | |
26 | [Defines]\r | |
27 | PLATFORM_NAME = NT32\r | |
28 | PLATFORM_GUID = EB216561-961F-47EE-9EF9-CA426EF547C2\r | |
bbd53f77 | 29 | PLATFORM_VERSION = 0.4\r |
25a201c6 | 30 | DSC_SPECIFICATION = 0x00010005\r |
f3a86f73 | 31 | OUTPUT_DIRECTORY = Build/NT32$(ARCH)\r |
f66a43b2 | 32 | SUPPORTED_ARCHITECTURES = IA32|X64\r |
5955601c | 33 | BUILD_TARGETS = DEBUG|RELEASE|NOOPT\r |
25a201c6 | 34 | SKUID_IDENTIFIER = DEFAULT\r |
409f6780 | 35 | FLASH_DEFINITION = Nt32Pkg/Nt32Pkg.fdf\r |
3b9f94c3 SZ |
36 | #\r |
37 | # This flag is to control tool to generate PCD info for dynamic(ex) PCD,\r | |
38 | # then enable or disable PCD info feature. TRUE is enable, and FLASE is disable.\r | |
39 | # If the flag is absent, it will be same as FALSE.\r | |
40 | #\r | |
61d8989f | 41 | PCD_INFO_GENERATION = TRUE\r |
53f79f86 | 42 | \r |
0ff38cbf | 43 | #\r |
44 | # Defines for default states. These can be changed on the command line.\r | |
45 | # -D FLAG=VALUE\r | |
46 | #\r | |
5ea07b9d JW |
47 | # Note: Secure Boot feature highly depends on the OpenSSL building. To enable this \r |
48 | # feature, please follow the instructions found in the file "Patch-HOWTO.txt" \r | |
49 | # located in CryptoPkg\Library\OpensslLib to enable the OpenSSL building first.\r | |
50 | #\r | |
0ff38cbf | 51 | DEFINE SECURE_BOOT_ENABLE = FALSE\r |
c9b78304 JW |
52 | \r |
53 | #\r | |
54 | # This flag is to enable or disable TLS feature. \r | |
55 | # These can be changed on the command line.\r | |
56 | # -D FLAG=VALUE\r | |
57 | #\r | |
5ea07b9d JW |
58 | # Note: TLS feature highly depends on the OpenSSL building. To enable this \r |
59 | # feature, please follow the instructions found in the file "Patch-HOWTO.txt" \r | |
60 | # located in CryptoPkg\Library\OpensslLib to enable the OpenSSL building first.\r | |
61 | #\r | |
62 | DEFINE TLS_ENABLE = FALSE\r | |
25a201c6 | 63 | \r |
2010c81b | 64 | ################################################################################\r |
65 | #\r | |
66 | # SKU Identification section - list of all SKU IDs supported by this\r | |
67 | # Platform.\r | |
68 | #\r | |
69 | ################################################################################\r | |
70 | [SkuIds]\r | |
71 | 0|DEFAULT # The entry: 0|DEFAULT is reserved and always required.\r | |
25a201c6 | 72 | \r |
73 | ################################################################################\r | |
74 | #\r | |
75 | # Library Class section - list of all Library Classes needed by this Platform.\r | |
76 | #\r | |
77 | ################################################################################\r | |
7b202cb0 | 78 | [LibraryClasses]\r |
7cc9c452 LG |
79 | #\r |
80 | # Entry point\r | |
81 | #\r | |
82 | PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf\r | |
83 | PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf\r | |
84 | DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf\r | |
85 | UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf\r | |
86 | UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf\r | |
87 | #\r | |
88 | # Basic\r | |
89 | #\r | |
409f6780 | 90 | BaseLib|MdePkg/Library/BaseLib/BaseLib.inf\r |
4213ce84 | 91 | SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf\r |
7cc9c452 | 92 | PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf\r |
0a525ec0 | 93 | CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf\r |
409f6780 | 94 | IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf\r |
7cc9c452 LG |
95 | PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf\r |
96 | PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf\r | |
97 | PciExpressLib|MdePkg/Library/BasePciExpressLib/BasePciExpressLib.inf\r | |
98 | CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf\r | |
99 | PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf\r | |
100 | PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf\r | |
811e73ac | 101 | SortLib|MdeModulePkg/Library/BaseSortLib/BaseSortLib.inf\r |
7cc9c452 LG |
102 | #\r |
103 | # UEFI & PI\r | |
104 | #\r | |
105 | UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf\r | |
106 | UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf\r | |
107 | UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf\r | |
108 | UefiLib|MdePkg/Library/UefiLib/UefiLib.inf\r | |
3f07728f | 109 | UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf\r |
4797d4c7 | 110 | HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf\r |
863986b3 | 111 | DevicePathLib|MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLibDevicePathProtocol.inf\r |
7cc9c452 LG |
112 | UefiDecompressLib|IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.inf\r |
113 | PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf\r | |
114 | PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf\r | |
115 | DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf\r | |
116 | DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf\r | |
811e73ac | 117 | UefiBootManagerLib|MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf\r |
ce7690e2 | 118 | FileExplorerLib|MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf\r |
7cc9c452 LG |
119 | \r |
120 | #\r | |
121 | # Generic Modules\r | |
122 | #\r | |
123 | UefiUsbLib|MdePkg/Library/UefiUsbLib/UefiUsbLib.inf\r | |
124 | UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf\r | |
125 | NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf\r | |
126 | IpIoLib|MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf\r | |
127 | UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf\r | |
24662805 | 128 | HttpLib|MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.inf\r |
7cc9c452 LG |
129 | DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf\r |
130 | OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf\r | |
131 | GenericBdsLib|IntelFrameworkModulePkg/Library/GenericBdsLib/GenericBdsLib.inf\r | |
6b1ac444 | 132 | CustomizedDisplayLib|MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf\r |
8273af4e | 133 | SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf\r |
7cc9c452 LG |
134 | TimerLib|MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf\r |
135 | SerialPortLib|MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.inf\r | |
136 | CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf\r | |
859e75c4 | 137 | BootLogoLib|MdeModulePkg/Library/BootLogoLib/BootLogoLib.inf\r |
7cc9c452 LG |
138 | #\r |
139 | # Platform\r | |
140 | #\r | |
811e73ac | 141 | PlatformBootManagerLib|Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf\r |
7cc9c452 LG |
142 | #\r |
143 | # Misc\r | |
144 | #\r | |
6fe9d9c1 | 145 | DebugLib|MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf\r |
48fff860 | 146 | DebugPrintErrorLevelLib|MdeModulePkg/Library/DxeDebugPrintErrorLevelLib/DxeDebugPrintErrorLevelLib.inf\r |
7cc9c452 | 147 | PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf\r |
53f79f86 | 148 | DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf\r |
55b17533 | 149 | CpuExceptionHandlerLib|MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLibNull.inf\r |
f66a43b2 | 150 | LockBoxLib|MdeModulePkg/Library/LockBoxNullLib/LockBoxNullLib.inf\r |
f75697b2 JW |
151 | IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf\r |
152 | OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf\r | |
0ff38cbf | 153 | \r |
154 | !if $(SECURE_BOOT_ENABLE) == TRUE\r | |
155 | PlatformSecureLib|Nt32Pkg/Library/PlatformSecureLib/PlatformSecureLib.inf\r | |
9dc2c78d | 156 | TpmMeasurementLib|SecurityPkg/Library/DxeTpmMeasurementLib/DxeTpmMeasurementLib.inf\r |
3c0e9029 SZ |
157 | AuthVariableLib|SecurityPkg/Library/AuthVariableLib/AuthVariableLib.inf\r |
158 | !else\r | |
159 | TpmMeasurementLib|MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf\r | |
160 | AuthVariableLib|MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf\r | |
0ff38cbf | 161 | !endif\r |
5ad1e00d | 162 | VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf\r |
53f79f86 | 163 | \r |
fdcc2fdc | 164 | [LibraryClasses.common.USER_DEFINED]\r |
409f6780 | 165 | DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf\r |
8e8fcb0e | 166 | PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf\r |
663ec9c0 | 167 | ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf\r |
5bc18fec | 168 | OemHookStatusCodeLib|Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/PeiNt32OemHookStatusCodeLib.inf\r |
5bc18fec | 169 | MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf\r |
d4b7ad52 | 170 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf\r |
25a201c6 | 171 | \r |
7cc9c452 LG |
172 | [LibraryClasses.common.PEIM,LibraryClasses.common.PEI_CORE]\r |
173 | #\r | |
174 | # PEI phase common\r | |
175 | #\r | |
409f6780 | 176 | HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf\r |
409f6780 | 177 | MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf\r |
663ec9c0 | 178 | ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf\r |
d173d9c7 | 179 | ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf\r |
ba571110 | 180 | BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptPei/BaseMemoryLibOptPei.inf\r |
409f6780 | 181 | IoLib|MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf\r |
409f6780 | 182 | PeCoffGetEntryPointLib|Nt32Pkg/Library/Nt32PeiPeCoffGetEntryPointLib/Nt32PeiPeCoffGetEntryPointLib.inf\r |
ffdd18bb | 183 | PeCoffExtraActionLib|Nt32Pkg/Library/PeiNt32PeCoffExtraActionLib/PeiNt32PeCoffExtraActionLib.inf\r |
48fff860 | 184 | DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf\r |
25a201c6 | 185 | \r |
7cc9c452 LG |
186 | [LibraryClasses.common.PEI_CORE]\r |
187 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf\r | |
188 | OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf\r | |
189 | \r | |
190 | [LibraryClasses.common.PEIM]\r | |
191 | PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf\r | |
192 | OemHookStatusCodeLib|Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/PeiNt32OemHookStatusCodeLib.inf\r | |
0ff38cbf | 193 | BaseCryptLib|CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf\r |
7cc9c452 LG |
194 | \r |
195 | [LibraryClasses.common]\r | |
196 | #\r | |
197 | # DXE phase common\r | |
198 | #\r | |
199 | BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.inf\r | |
409f6780 A |
200 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf\r |
201 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf\r | |
0a525ec0 | 202 | MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf\r |
663ec9c0 | 203 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf\r |
409f6780 | 204 | OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf\r |
ffdd18bb | 205 | PeCoffExtraActionLib|Nt32Pkg/Library/DxeNt32PeCoffExtraActionLib/DxeNt32PeCoffExtraActionLib.inf\r |
7cc9c452 LG |
206 | ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf\r |
207 | WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf\r | |
0ff38cbf | 208 | BaseCryptLib|CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf\r |
c9b78304 | 209 | TlsLib|CryptoPkg/Library/TlsLib/TlsLib.inf\r |
25a201c6 | 210 | \r |
7cc9c452 LG |
211 | [LibraryClasses.common.DXE_CORE]\r |
212 | HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf\r | |
213 | MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf\r | |
880cfb98 | 214 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf\r |
25a201c6 | 215 | \r |
7cc9c452 LG |
216 | [LibraryClasses.common.DXE_SMM_DRIVER]\r |
217 | DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf\r | |
218 | \r | |
219 | [LibraryClasses.common.UEFI_DRIVER]\r | |
220 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf\r | |
25a201c6 | 221 | \r |
869f8e34 | 222 | [LibraryClasses.common.UEFI_APPLICATION]\r |
811e73ac | 223 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf\r |
fcf24bad | 224 | PrintLib|MdeModulePkg/Library/DxePrintLibPrint2Protocol/DxePrintLibPrint2Protocol.inf\r |
0ff38cbf | 225 | \r |
226 | [LibraryClasses.common.DXE_RUNTIME_DRIVER]\r | |
227 | #\r | |
228 | # Runtime\r | |
229 | #\r | |
230 | BaseCryptLib|CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf\r | |
4cf1c1b5 | 231 | \r |
25a201c6 | 232 | ################################################################################\r |
233 | #\r | |
234 | # Pcd Section - list of all EDK II PCD Entries defined by this Platform\r | |
235 | #\r | |
236 | ################################################################################\r | |
7b202cb0 | 237 | [PcdsFeatureFlag]\r |
5fa30855 LG |
238 | gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE\r |
239 | gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE\r | |
f66a43b2 | 240 | gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplBuildPageTables|FALSE\r |
5fa30855 | 241 | gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreImageLoaderSearchTeSectionFirst|FALSE\r |
842b46a4 | 242 | gEfiMdeModulePkgTokenSpaceGuid.PcdVariableCollectStatistics|TRUE\r |
95276127 | 243 | \r |
5fa30855 | 244 | [PcdsFixedAtBuild]\r |
b3af5df6 | 245 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizeNonPopulateCapsule|0x0\r |
246 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizePopulateCapsule|0x0\r | |
5fa30855 | 247 | gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000040\r |
5fa30855 LG |
248 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x1f\r |
249 | gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareVolume|L"..\\Fv\\Nt32.fd"\r | |
b3af5df6 | 250 | gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareBlockSize|0x10000\r |
5fa30855 | 251 | gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x0f\r |
963b62ee | 252 | gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE\r |
c9b78304 | 253 | !if $(SECURE_BOOT_ENABLE) == TRUE || $(TLS_ENABLE) == TRUE\r |
0ff38cbf | 254 | gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x2000\r |
255 | !endif\r | |
256 | \r | |
2790926d RN |
257 | !ifndef $(USE_OLD_SHELL)\r |
258 | gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdShellFile|{ 0x83, 0xA5, 0x04, 0x7C, 0x3E, 0x9E, 0x1C, 0x4F, 0xAD, 0x65, 0xE0, 0x52, 0x68, 0xD0, 0xB4, 0xD1 }\r | |
259 | !endif\r | |
260 | \r | |
0ff38cbf | 261 | !if $(SECURE_BOOT_ENABLE) == TRUE\r |
262 | # override the default values from SecurityPkg to ensure images from all sources are verified in secure boot\r | |
db44ea6c FS |
263 | gEfiSecurityPkgTokenSpaceGuid.PcdOptionRomImageVerificationPolicy|0x04\r |
264 | gEfiSecurityPkgTokenSpaceGuid.PcdFixedMediaImageVerificationPolicy|0x04\r | |
265 | gEfiSecurityPkgTokenSpaceGuid.PcdRemovableMediaImageVerificationPolicy|0x04\r | |
0ff38cbf | 266 | !endif\r |
f2993c02 ED |
267 | \r |
268 | gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile|{ 0x21, 0xaa, 0x2c, 0x46, 0x14, 0x76, 0x03, 0x45, 0x83, 0x6e, 0x8a, 0xb6, 0xf4, 0x66, 0x23, 0x31 }\r | |
269 | \r | |
25a201c6 | 270 | \r |
271 | ################################################################################\r | |
272 | #\r | |
273 | # Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform\r | |
274 | #\r | |
275 | ################################################################################\r | |
2cb630b1 | 276 | [PcdsDynamicDefault.common.DEFAULT]\r |
e527bd20 | 277 | gEfiNt32PkgTokenSpaceGuid.PcdWinNtSerialPort|L"COM1!COM2"|VOID*|20\r |
e527bd20 | 278 | gEfiNt32PkgTokenSpaceGuid.PcdWinNtGop|L"UGA Window 1!UGA Window 2"|VOID*|52\r |
279 | gEfiNt32PkgTokenSpaceGuid.PcdWinNtConsole|L"Bus Driver Console Window"|VOID*|52\r | |
280 | gEfiNt32PkgTokenSpaceGuid.PcdWinNtVirtualDisk|L"FW;40960;512"|VOID*|26\r | |
281 | gEfiNt32PkgTokenSpaceGuid.PcdWinNtMemorySize|L"64!64"|VOID*|12\r | |
b3af5df6 | 282 | gEfiNt32PkgTokenSpaceGuid.PcdWinNtPhysicalDisk|L"a:RW;2880;512!d:RO;307200;2048!j:RW;262144;512"|VOID*|100\r |
e527bd20 | 283 | gEfiNt32PkgTokenSpaceGuid.PcdWinNtUga|L"UGA Window 1!UGA Window 2"|VOID*|52\r |
b3af5df6 | 284 | \r |
285 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0\r | |
286 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0\r | |
287 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase|0\r | |
4e502412 CS |
288 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64|0\r |
289 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64|0\r | |
290 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64|0\r | |
25a201c6 | 291 | \r |
f66a43b2 JM |
292 | [PcdsDynamicDefault.Ia32]\r |
293 | gEfiNt32PkgTokenSpaceGuid.PcdWinNtFileSystem|L".!..\..\..\..\EdkShellBinPkg\Bin\Ia32\Apps"|VOID*|106\r | |
294 | \r | |
295 | [PcdsDynamicDefault.x64]\r | |
296 | gEfiNt32PkgTokenSpaceGuid.PcdWinNtFileSystem|L".!..\..\..\..\EdkShellBinPkg\Bin\X64\Apps"|VOID*|106\r | |
297 | \r | |
fcf24bad | 298 | [PcdsDynamicHii.common.DEFAULT]\r |
dd94583b RN |
299 | gEfiMdeModulePkgTokenSpaceGuid.PcdSetupConOutColumn|L"SetupConsoleConfig"|gEfiNt32PkgTokenSpaceGuid|0x0|80\r |
300 | gEfiMdeModulePkgTokenSpaceGuid.PcdSetupConOutRow|L"SetupConsoleConfig"|gEfiNt32PkgTokenSpaceGuid|0x4|25\r | |
301 | gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|L"Timeout"|gEfiGlobalVariableGuid|0x0|10\r | |
302 | gEfiMdePkgTokenSpaceGuid.PcdHardwareErrorRecordLevel|L"HwErrRecSupport"|gEfiGlobalVariableGuid|0x0|1\r | |
53f79f86 | 303 | \r |
dcbb35eb | 304 | ###################################################################################################\r |
25a201c6 | 305 | #\r |
dcbb35eb | 306 | # Components Section - list of the modules and components that will be processed by compilation\r |
307 | # tools and the EDK II tools to generate PE32/PE32+/Coff image files.\r | |
25a201c6 | 308 | #\r |
dcbb35eb | 309 | # Note: The EDK II DSC file is not used to specify how compiled binary images get placed\r |
310 | # into firmware volume images. This section is just a list of modules to compile from\r | |
311 | # source into UEFI-compliant binaries.\r | |
312 | # It is the FDF file that contains information on combining binary files into firmware\r | |
313 | # volume images, whose concept is beyond UEFI and is described in PI specification.\r | |
314 | # Binary modules do not need to be listed in this section, as they should be\r | |
315 | # specified in the FDF file. For example: Shell binary (Shell_Full.efi), FAT binary (Fat.efi),\r | |
316 | # Logo (Logo.bmp), and etc.\r | |
317 | # There may also be modules listed in this section that are not required in the FDF file,\r | |
318 | # When a module listed here is excluded from FDF file, then UEFI-compliant binary will be\r | |
319 | # generated for it, but the binary will not be put into any firmware volume.\r | |
320 | #\r | |
321 | ###################################################################################################\r | |
f66a43b2 | 322 | [Components]\r |
04eced5b | 323 | ##\r |
324 | # SEC Phase modules\r | |
325 | ##\r | |
f66a43b2 JM |
326 | Nt32Pkg/Sec/SecMain.inf {\r |
327 | <BuildOptions>\r | |
328 | # Add override here, because default X64_CC_FLAGS is already overriden in DSC\r | |
329 | MSFT:*_*_X64_CC_FLAGS == /nologo /W4 /WX /Gy /c /D UNICODE /Od /FIAutoGen.h /EHs-c- /GF /Gs8192 /Zi /Gm /D _CRT_SECURE_NO_WARNINGS /D _CRT_SECURE_NO_DEPRECATE\r | |
330 | }\r | |
929e7bd1 | 331 | \r |
04eced5b | 332 | ##\r |
333 | # PEI Phase modules\r | |
334 | ##\r | |
409f6780 | 335 | MdeModulePkg/Core/Pei/PeiMain.inf\r |
7cc9c452 LG |
336 | MdeModulePkg/Universal/PCD/Pei/Pcd.inf {\r |
337 | <LibraryClasses>\r | |
76b0f6ab | 338 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf\r |
339 | }\r | |
25126a05 | 340 | MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf\r |
164393a0 | 341 | MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf\r |
25126a05 | 342 | Nt32Pkg/WinNtOemHookStatusCodeHandlerPei/WinNtOemHookStatusCodeHandlerPei.inf\r |
409f6780 | 343 | Nt32Pkg/BootModePei/BootModePei.inf\r |
ba82cb67 | 344 | Nt32Pkg/StallPei/StallPei.inf\r |
409f6780 | 345 | Nt32Pkg/WinNtFlashMapPei/WinNtFlashMapPei.inf\r |
0ff38cbf | 346 | \r |
71e9d09e | 347 | MdeModulePkg/Universal/FaultTolerantWritePei/FaultTolerantWritePei.inf\r |
409f6780 | 348 | MdeModulePkg/Universal/Variable/Pei/VariablePei.inf\r |
0ff38cbf | 349 | \r |
409f6780 A |
350 | Nt32Pkg/WinNtAutoScanPei/WinNtAutoScanPei.inf\r |
351 | Nt32Pkg/WinNtFirmwareVolumePei/WinNtFirmwareVolumePei.inf\r | |
352 | Nt32Pkg/WinNtThunkPPIToProtocolPei/WinNtThunkPPIToProtocolPei.inf\r | |
706e7534 | 353 | MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf\r |
04eced5b | 354 | ##\r |
355 | # DXE Phase modules\r | |
356 | ##\r | |
899bc551 LG |
357 | MdeModulePkg/Core/Dxe/DxeMain.inf {\r |
358 | <LibraryClasses>\r | |
46ffb9a4 | 359 | NULL|MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/DxeCrc32GuidedSectionExtractLib.inf\r |
863986b3 | 360 | DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf\r |
97ef8cff | 361 | <BuildOptions>\r |
f66a43b2 | 362 | *_*_*_CC_FLAGS =\r |
899bc551 | 363 | }\r |
97ef8cff | 364 | \r |
409f6780 | 365 | MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {\r |
b3af5df6 | 366 | <LibraryClasses>\r |
cdebf6c6 | 367 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf\r |
cba9012a | 368 | }\r |
409f6780 | 369 | Nt32Pkg/MetronomeDxe/MetronomeDxe.inf\r |
593a8308 | 370 | Nt32Pkg/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf\r |
409f6780 A |
371 | Nt32Pkg/ResetRuntimeDxe/ResetRuntimeDxe.inf\r |
372 | MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf\r | |
373 | Nt32Pkg/FvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf\r | |
0ff38cbf | 374 | MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf {\r |
375 | <LibraryClasses>\r | |
376 | !if $(SECURE_BOOT_ENABLE) == TRUE\r | |
377 | NULL|SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.inf\r | |
378 | !endif \r | |
379 | }\r | |
1fdd39d3 | 380 | MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf\r |
409f6780 A |
381 | MdeModulePkg/Universal/EbcDxe/EbcDxe.inf\r |
382 | MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf\r | |
409f6780 | 383 | Nt32Pkg/WinNtThunkDxe/WinNtThunkDxe.inf\r |
593a8308 | 384 | Nt32Pkg/CpuRuntimeDxe/CpuRuntimeDxe.inf\r |
eba3ff4c | 385 | MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf\r |
409f6780 A |
386 | Nt32Pkg/MiscSubClassPlatformDxe/MiscSubClassPlatformDxe.inf\r |
387 | Nt32Pkg/TimerDxe/TimerDxe.inf\r | |
25126a05 | 388 | MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf\r |
164393a0 | 389 | MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf\r |
25126a05 | 390 | Nt32Pkg/WinNtOemHookStatusCodeHandlerDxe/WinNtOemHookStatusCodeHandlerDxe.inf\r |
95ac0eba SZ |
391 | MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf {\r |
392 | <LibraryClasses>\r | |
393 | NULL|MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf\r | |
394 | }\r | |
0ff38cbf | 395 | !if $(SECURE_BOOT_ENABLE) == TRUE\r |
0ff38cbf | 396 | SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigDxe.inf\r |
0ff38cbf | 397 | !endif\r |
d5469f43 | 398 | MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf\r |
409f6780 A |
399 | MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf\r |
400 | MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf\r | |
401 | MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf\r | |
fcf24bad | 402 | MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf {\r |
403 | <LibraryClasses>\r | |
404 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf\r | |
405 | }\r | |
9531873c | 406 | MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf {\r |
407 | <LibraryClasses>\r | |
408 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf\r | |
409 | }\r | |
0929b78a HT |
410 | MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf {\r |
411 | <LibraryClasses>\r | |
412 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf\r | |
413 | }\r | |
863986b3 RN |
414 | MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf {\r |
415 | <LibraryClasses>\r | |
416 | DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf\r | |
417 | }\r | |
409f6780 A |
418 | MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf\r |
419 | MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf\r | |
409f6780 | 420 | MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf\r |
70dc0b80 | 421 | FatPkg/EnhancedFatDxe/Fat.inf\r |
061b1c20 | 422 | MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf\r |
409f6780 A |
423 | MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf ##This driver follows UEFI specification definition\r |
424 | MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf ##This driver follows UEFI specification definition\r | |
425 | IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/IdeBusDxe.inf\r | |
880cfb98 | 426 | Nt32Pkg/WinNtBusDriverDxe/WinNtBusDriverDxe.inf {\r |
427 | <LibraryClasses>\r | |
428 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf\r | |
429 | }\r | |
409f6780 | 430 | Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIoDxe.inf\r |
409f6780 A |
431 | Nt32Pkg/WinNtSerialIoDxe/WinNtSerialIoDxe.inf\r |
432 | Nt32Pkg/WinNtGopDxe/WinNtGopDxe.inf\r | |
433 | Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystemDxe.inf\r | |
ef0028a2 | 434 | MdeModulePkg/Application/HelloWorld/HelloWorld.inf\r |
929e7bd1 | 435 | \r |
593a8308 | 436 | #\r |
437 | # Network stack drivers\r | |
438 | # To test network drivers, need network Io driver(SnpNt32Io.dll), please refer to NETWORK-IO Subproject.\r | |
439 | #\r | |
36ee91ca | 440 | MdeModulePkg/Universal/Network/DpcDxe/DpcDxe.inf\r |
593a8308 | 441 | MdeModulePkg/Universal/Network/ArpDxe/ArpDxe.inf\r |
442 | MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf\r | |
593a8308 | 443 | MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Dxe.inf\r |
444 | MdeModulePkg/Universal/Network/MnpDxe/MnpDxe.inf\r | |
1b14ec40 | 445 | MdeModulePkg/Universal/Network/VlanConfigDxe/VlanConfigDxe.inf\r |
593a8308 | 446 | MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf\r |
447 | MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Dxe.inf\r | |
448 | MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Dxe.inf\r | |
5276f667 | 449 | MdeModulePkg/Universal/Network/UefiPxeBcDxe/UefiPxeBcDxe.inf\r |
593a8308 | 450 | Nt32Pkg/SnpNt32Dxe/SnpNt32Dxe.inf\r |
451 | \r | |
34a2bb9a | 452 | MdeModulePkg/Universal/Network/IScsiDxe/IScsiDxe.inf\r |
453 | \r | |
24662805 FS |
454 | NetworkPkg/HttpBootDxe/HttpBootDxe.inf\r |
455 | NetworkPkg/DnsDxe/DnsDxe.inf\r | |
456 | NetworkPkg/HttpDxe/HttpDxe.inf\r | |
4018f205 | 457 | NetworkPkg/HttpUtilitiesDxe/HttpUtilitiesDxe.inf\r |
c9b78304 JW |
458 | \r |
459 | !if $(TLS_ENABLE) == TRUE\r | |
460 | NetworkPkg/TlsDxe/TlsDxe.inf\r | |
461 | NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigDxe.inf\r | |
462 | !endif\r | |
24662805 | 463 | \r |
67ce479a | 464 | MdeModulePkg/Universal/BdsDxe/BdsDxe.inf\r |
ce7690e2 DB |
465 | MdeModulePkg/Application/UiApp/UiApp.inf{\r |
466 | <LibraryClasses>\r | |
5f8f0daa DB |
467 | NULL|MdeModulePkg/Library/DeviceManagerUiLib/DeviceManagerUiLib.inf\r |
468 | NULL|MdeModulePkg/Library/BootManagerUiLib/BootManagerUiLib.inf\r | |
469 | NULL|MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerUiLib.inf\r | |
ce7690e2 | 470 | }\r |
811e73ac | 471 | MdeModulePkg/Universal/DriverHealthManagerDxe/DriverHealthManagerDxe.inf\r |
5fd5fcd3 | 472 | MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf\r |
6b1ac444 | 473 | MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf\r |
5fd5fcd3 | 474 | MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf\r |
fcf24bad | 475 | MdeModulePkg/Universal/PrintDxe/PrintDxe.inf\r |
5fd5fcd3 | 476 | MdeModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf {\r |
477 | <LibraryClasses>\r | |
478 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf\r | |
479 | }\r | |
34a2bb9a | 480 | MdeModulePkg/Application/VariableInfo/VariableInfo.inf\r |
53f79f86 | 481 | \r |
27431725 | 482 | MdeModulePkg/Universal/PlatformDriOverrideDxe/PlatformDriOverrideDxe.inf\r |
e2e9b3b4 | 483 | MdeModulePkg/Universal/LoadFileOnFv2/LoadFileOnFv2.inf\r |
0b6dc68d ED |
484 | MdeModulePkg/Application/BootManagerMenuApp/BootManagerMenuApp.inf {\r |
485 | <LibraryClasses>\r | |
486 | NULL|IntelFrameworkModulePkg/Library/LegacyBootManagerLib/LegacyBootManagerLib.inf\r | |
487 | }\r | |
67ce479a | 488 | MdeModulePkg/Logo/LogoDxe.inf\r |
27431725 | 489 | \r |
7cc9c452 LG |
490 | ###################################################################################################\r |
491 | #\r | |
492 | # BuildOptions Section - Define the module specific tool chain flags that should be used as\r | |
493 | # the default flags for a module. These flags are appended to any \r | |
494 | # standard flags that are defined by the build process. They can be \r | |
495 | # applied for any modules or only those modules with the specific \r | |
496 | # module style (EDK or EDKII) specified in [Components] section.\r | |
497 | #\r | |
498 | ###################################################################################################\r | |
2cb630b1 | 499 | [BuildOptions]\r |
f66a43b2 | 500 | DEBUG_*_*_DLINK_FLAGS = /EXPORT:InitializeDriver=$(IMAGE_ENTRY_POINT) /BASE:0x10000 /ALIGN:4096 /FILEALIGN:4096 /SUBSYSTEM:CONSOLE\r |
5955601c | 501 | NOOPT_*_*_DLINK_FLAGS = /EXPORT:InitializeDriver=$(IMAGE_ENTRY_POINT) /BASE:0x10000 /ALIGN:4096 /FILEALIGN:4096 /SUBSYSTEM:CONSOLE\r |
f66a43b2 | 502 | RELEASE_*_*_DLINK_FLAGS = /ALIGN:4096 /FILEALIGN:4096\r |
2529e5e1 | 503 | \r |
be0187bb | 504 | #############################################################################################################\r |
505 | # NOTE:\r | |
f66a43b2 JM |
506 | # The following [Libraries] section is for building EDK module under the EDKII tool chain.\r |
507 | # If you want build EDK module for Nt32 platform, please uncomment [Libraries] section and\r | |
bb9f4ead RN |
508 | # libraries used by that EDK module.\r |
509 | # Currently, Nt32 platform do not has any EDK style module\r | |
53f79f86 | 510 | #\r |
be0187bb | 511 | #\r |
f66a43b2 | 512 | #[Libraries]\r |
be0187bb | 513 | #\r |
514 | # Libraries common to PEI and DXE\r | |
515 | #\r | |
fcf24bad | 516 | # EdkCompatibilityPkg/Foundation/Efi/Guid/EfiGuidLib.inf\r |
517 | # EdkCompatibilityPkg/Foundation/Framework/Guid/EdkFrameworkGuidLib.inf\r | |
518 | # EdkCompatibilityPkg/Foundation/Guid/EdkGuidLib.inf\r | |
519 | # EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/EfiCommonLib.inf\r | |
520 | # EdkCompatibilityPkg/Foundation/Cpu/Pentium/CpuIA32Lib/CpuIA32Lib.inf\r | |
521 | # EdkCompatibilityPkg/Foundation/Cpu/Itanium/CpuIa64Lib/CpuIA64Lib.inf\r | |
522 | # EdkCompatibilityPkg/Foundation/Library/CustomizedDecompress/CustomizedDecompress.inf\r | |
523 | # EdkCompatibilityPkg/Foundation/Library/CompilerStub/CompilerStubLib.inf\r | |
524 | # EdkCompatibilityPkg/Foundation/Library/Dxe/Hob/HobLib.inf\r | |
be0187bb | 525 | \r |
526 | #\r | |
527 | # PEI libraries\r | |
528 | #\r | |
fcf24bad | 529 | # EdkCompatibilityPkg/Foundation/Framework/Ppi/EdkFrameworkPpiLib.inf\r |
530 | # EdkCompatibilityPkg/Foundation/Ppi/EdkPpiLib.inf\r | |
531 | # EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/PeiLib.inf\r | |
532 | # EdkCompatibilityPkg/Foundation/Library/Pei/Hob/PeiHobLib.inf\r | |
be0187bb | 533 | \r |
534 | #\r | |
535 | # DXE libraries\r | |
536 | #\r | |
fcf24bad | 537 | # EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/ArchProtocolLib.inf\r |
538 | # EdkCompatibilityPkg/Foundation/Efi/Protocol/EfiProtocolLib.inf\r | |
539 | # EdkCompatibilityPkg/Foundation/Framework/Protocol/EdkFrameworkProtocolLib.inf\r | |
540 | # EdkCompatibilityPkg/Foundation/Protocol/EdkProtocolLib.inf\r | |
541 | # EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/EfiDriverLib.inf\r | |
542 | # EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/EfiRuntimeLib.inf\r | |
543 | # EdkCompatibilityPkg/Foundation/Library/Dxe/Graphics/Graphics.inf\r | |
544 | # EdkCompatibilityPkg/Foundation/Library/Dxe/EfiIfrSupportLib/EfiIfrSupportLib.inf\r | |
545 | # EdkCompatibilityPkg/Foundation/Library/Dxe/Print/PrintLib.inf\r | |
546 | # EdkCompatibilityPkg/Foundation/Library/Dxe/EfiScriptLib/EfiScriptLib.inf\r | |
547 | # EdkCompatibilityPkg/Foundation/Library/Dxe/EfiUiLib/EfiUiLib.inf\r | |
be0187bb | 548 | \r |
549 | #\r | |
550 | # Print/Graphics Library consume SetupBrowser Print Protocol\r | |
551 | #\r | |
fcf24bad | 552 | # EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/PrintLib.inf\r |
553 | # EdkCompatibilityPkg/Foundation/Library/Dxe/GraphicsLite/Graphics.inf\r | |
554 | \r |