95276127 |
1 | #/** @file\r |
2 | # Component description file for DxeIpl module\r |
3 | #\r |
4 | # The responsibility of this module is to load the DXE Core from a Firmware Volume. This implementation i used to load a 32-bit DXE Core.\r |
5 | # Copyright (c) 2006 - 2007, Intel Corporation\r |
6 | #\r |
7 | # All rights reserved. This program and the accompanying materials\r |
8 | # are licensed and made available under the terms and conditions of the BSD License\r |
9 | # which accompanies this distribution. The full text of the license may be found at\r |
10 | # http://opensource.org/licenses/bsd-license.php\r |
11 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r |
12 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r |
13 | #\r |
14 | #\r |
15 | #**/\r |
16 | \r |
95276127 |
17 | [Defines]\r |
18 | INF_VERSION = 0x00010005\r |
19 | BASE_NAME = DxeIpl\r |
20 | FILE_GUID = 86D70125-BAA3-4296-A62F-602BEBBB9081\r |
21 | MODULE_TYPE = PEIM\r |
22 | VERSION_STRING = 1.0\r |
23 | EDK_RELEASE_VERSION = 0x00020000\r |
24 | EFI_SPECIFICATION_VERSION = 0x00020000\r |
25 | \r |
26 | ENTRY_POINT = PeimInitializeDxeIpl\r |
27 | \r |
28 | #\r |
29 | # The following information is for reference only and not required by the build tools.\r |
30 | #\r |
31 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC\r |
32 | #\r |
33 | \r |
95276127 |
34 | [Sources.common]\r |
35 | DxeIpl.h\r |
36 | DxeLoad.c\r |
95276127 |
37 | \r |
38 | [Sources.Ia32]\r |
39 | Ia32/VirtualMemory.h\r |
40 | Ia32/VirtualMemory.c\r |
41 | Ia32/DxeLoadFunc.c\r |
42 | Ia32/ImageRead.c\r |
43 | \r |
44 | [Sources.X64]\r |
45 | X64/DxeLoadFunc.c\r |
46 | Ia32/ImageRead.c\r |
47 | \r |
48 | [Sources.IPF]\r |
49 | Ipf/DxeLoadFunc.c\r |
50 | Ipf/ImageRead.c\r |
51 | \r |
52 | [Sources.EBC]\r |
53 | X64/DxeLoadFunc.c\r |
54 | Ia32/ImageRead.c\r |
55 | \r |
56 | \r |
95276127 |
57 | [Packages]\r |
58 | MdePkg/MdePkg.dec \r |
59 | IntelFrameworkPkg/IntelFrameworkPkg.dec\r |
60 | IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec\r |
61 | \r |
62 | \r |
95276127 |
63 | [LibraryClasses]\r |
64 | PeCoffLib\r |
65 | PcdLib\r |
66 | MemoryAllocationLib\r |
67 | BaseMemoryLib\r |
68 | PeiServicesTablePointerLib\r |
69 | CustomDecompressLib\r |
70 | TianoDecompressLib\r |
71 | UefiDecompressLib\r |
56a71b55 |
72 | PeCoffLoaderLib\r |
95276127 |
73 | CacheMaintenanceLib\r |
74 | ReportStatusCodeLib\r |
75 | PeiServicesLib\r |
76 | HobLib\r |
77 | BaseLib\r |
78 | PeimEntryPoint\r |
79 | DebugLib\r |
80 | \r |
81 | \r |
95276127 |
82 | [Protocols]\r |
83 | gEfiCustomizedDecompressProtocolGuid # PROTOCOL SOMETIMES_PRODUCED\r |
84 | gEfiTianoDecompressProtocolGuid # PROTOCOL SOMETIMES_PRODUCED\r |
85 | gEfiDecompressProtocolGuid # PROTOCOL SOMETIMES_PRODUCED\r |
86 | \r |
87 | \r |
95276127 |
88 | [Ppis]\r |
89 | gEfiPeiSecurityPpiGuid # PPI SOMETIMES_CONSUMED\r |
90 | gEfiPeiSectionExtractionPpiGuid # PPI SOMETIMES_CONSUMED\r |
91 | gEfiPeiS3ResumePpiGuid # PPI SOMETIMES_CONSUMED\r |
92 | gEfiPeiRecoveryModulePpiGuid # PPI SOMETIMES_CONSUMED\r |
93 | gEfiEndOfPeiSignalPpiGuid # PPI SOMETIMES_PRODUCED\r |
94 | gEfiPeiFvFileLoaderPpiGuid # PPI SOMETIMES_PRODUCED\r |
95 | gEfiDxeIplPpiGuid # PPI SOMETIMES_PRODUCED\r |
96 | gEfiPeiPeCoffLoaderGuid \r |
97 | \r |
98 | \r |
95276127 |
99 | [PcdsFeatureFlag.common]\r |
be29ac91 |
100 | PcdDxeIplSupportCustomDecompress|gEfiMdeModulePkgTokenSpaceGuid\r |
101 | PcdDxeIplSupportTianoDecompress|gEfiMdeModulePkgTokenSpaceGuid\r |
102 | PcdDxeIplSupportEfiDecompress|gEfiMdeModulePkgTokenSpaceGuid\r |
103 | PcdDxeIplBuildShareCodeHobs|gEfiMdeModulePkgTokenSpaceGuid\r |
95276127 |
104 | \r |
105 | [PcdsFeatureFlag.IA32]\r |
106 | PcdDxeIplSwitchToLongMode|gEfiMdeModulePkgTokenSpaceGuid\r |
107 | \r |
108 | \r |
95276127 |
109 | [Depex]\r |
110 | gEfiPeiMemoryDiscoveredPpiGuid\r |
111 | \r |