]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
Add doxygen style comments for functions in DxeIpl.
[mirror_edk2.git] / MdeModulePkg / Core / DxeIplPeim / DxeIpl.inf
1 #/** @file
2 #
3 # Component description file for DxeIpl module
4 #
5 # 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.
6 #
7 # Copyright (c) 2006 - 2008, Intel Corporation. <BR>
8 # All rights reserved. This program and the accompanying materials
9 # are licensed and made available under the terms and conditions of the BSD License
10 # which accompanies this distribution. The full text of the license may be found at
11 # http://opensource.org/licenses/bsd-license.php
12 #
13 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #
16 #**/
17
18 [Defines]
19 INF_VERSION = 0x00010005
20 BASE_NAME = DxeIpl
21 FILE_GUID = 86D70125-BAA3-4296-A62F-602BEBBB9081
22 MODULE_TYPE = PEIM
23 VERSION_STRING = 1.0
24 EDK_RELEASE_VERSION = 0x00020000
25 EFI_SPECIFICATION_VERSION = 0x00020000
26
27 ENTRY_POINT = PeimInitializeDxeIpl
28
29 #
30 # The following information is for reference only and not required by the build tools.
31 #
32 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
33 #
34
35 [Sources.common]
36 DxeIpl.h
37 DxeLoad.c
38
39 [Sources.Ia32]
40 Ia32/VirtualMemory.h
41 Ia32/VirtualMemory.c
42 Ia32/DxeLoadFunc.c
43 Ia32/ImageRead.c
44 Ia32/IdtVectorAsm.asm
45 Ia32/IdtVectorAsm.S | GCC
46
47 [Sources.X64]
48 X64/DxeLoadFunc.c
49 Ia32/ImageRead.c
50
51 [Sources.IPF]
52 Ipf/DxeLoadFunc.c
53 Ipf/ImageRead.c
54
55 [Sources.EBC]
56 X64/DxeLoadFunc.c
57 Ia32/ImageRead.c
58
59
60 [Packages]
61 MdePkg/MdePkg.dec
62 MdeModulePkg/MdeModulePkg.dec
63
64 [LibraryClasses]
65 PeCoffLib
66 PcdLib
67 MemoryAllocationLib
68 BaseMemoryLib
69 PeiServicesTablePointerLib
70 ExtractGuidedSectionLib
71 UefiDecompressLib
72 CacheMaintenanceLib
73 ReportStatusCodeLib
74 PeiServicesLib
75 HobLib
76 BaseLib
77 PeimEntryPoint
78 DebugLib
79 S3Lib
80 RecoveryLib
81 PerformanceLib
82
83 [Ppis]
84 gEfiEndOfPeiSignalPpiGuid # PPI SOMETIMES_PRODUCED
85 gEfiDxeIplPpiGuid # PPI SOMETIMES_PRODUCED
86 gEfiPeiDecompressPpiGuid
87 gEfiPeiReadOnlyVariable2PpiGuid
88
89 [Guids]
90 gEfiMemoryTypeInformationGuid
91
92 [FeaturePcd.common]
93 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportCustomDecompress
94 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportTianoDecompress
95 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportEfiDecompress
96 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplBuildShareCodeHobs
97
98 [FeaturePcd.IA32]
99 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplEnableIdt
100 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode
101
102 [FixedPcd.common]
103 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValuePeiHandoffToDxe
104
105 [Depex]
106 gEfiPeiMemoryDiscoveredPpiGuid
107