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