2007-07-05 09:05:28 +02:00
|
|
|
#/** @file
|
2008-04-08 05:01:25 +02:00
|
|
|
#
|
2008-07-16 15:17:50 +02:00
|
|
|
# Component description file for DxeIpl module
|
2008-04-08 05:01:25 +02:00
|
|
|
#
|
2008-07-16 15:17:50 +02:00
|
|
|
# The responsibility of this module is to load the DXE Core from a Firmware Volume.
|
|
|
|
# This implementation is used to load a 32-bit DXE Core.
|
2008-04-08 05:01:25 +02:00
|
|
|
#
|
|
|
|
# Copyright (c) 2006 - 2008, Intel Corporation. <BR>
|
2007-07-05 09:05:28 +02:00
|
|
|
# All rights reserved. This program and the accompanying materials
|
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
2008-04-08 05:01:25 +02:00
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
2007-07-05 09:05:28 +02:00
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
2008-04-08 05:01:25 +02:00
|
|
|
#
|
2007-07-05 09:05:28 +02:00
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2008-04-08 05:01:25 +02:00
|
|
|
#
|
2007-07-05 09:05:28 +02:00
|
|
|
#**/
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = DxeIpl
|
|
|
|
FILE_GUID = 86D70125-BAA3-4296-A62F-602BEBBB9081
|
|
|
|
MODULE_TYPE = PEIM
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
EDK_RELEASE_VERSION = 0x00020000
|
|
|
|
EFI_SPECIFICATION_VERSION = 0x00020000
|
|
|
|
|
|
|
|
ENTRY_POINT = PeimInitializeDxeIpl
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
2008-07-16 15:17:50 +02:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF
|
2007-07-05 09:05:28 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
[Sources.common]
|
|
|
|
DxeIpl.h
|
|
|
|
DxeLoad.c
|
|
|
|
|
|
|
|
[Sources.Ia32]
|
|
|
|
Ia32/VirtualMemory.h
|
|
|
|
Ia32/VirtualMemory.c
|
|
|
|
Ia32/DxeLoadFunc.c
|
|
|
|
Ia32/ImageRead.c
|
2007-09-28 10:22:33 +02:00
|
|
|
Ia32/IdtVectorAsm.asm
|
|
|
|
Ia32/IdtVectorAsm.S | GCC
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
[Sources.X64]
|
|
|
|
X64/DxeLoadFunc.c
|
|
|
|
Ia32/ImageRead.c
|
|
|
|
|
|
|
|
[Sources.IPF]
|
|
|
|
Ipf/DxeLoadFunc.c
|
|
|
|
Ipf/ImageRead.c
|
|
|
|
|
|
|
|
[Packages]
|
2007-08-29 10:52:49 +02:00
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
PeCoffLib
|
|
|
|
PcdLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
BaseMemoryLib
|
|
|
|
PeiServicesTablePointerLib
|
2007-09-29 10:04:29 +02:00
|
|
|
ExtractGuidedSectionLib
|
2007-07-05 09:05:28 +02:00
|
|
|
UefiDecompressLib
|
|
|
|
CacheMaintenanceLib
|
|
|
|
ReportStatusCodeLib
|
|
|
|
PeiServicesLib
|
|
|
|
HobLib
|
|
|
|
BaseLib
|
|
|
|
PeimEntryPoint
|
|
|
|
DebugLib
|
2007-09-26 11:35:36 +02:00
|
|
|
S3Lib
|
|
|
|
RecoveryLib
|
2007-12-06 10:52:27 +01:00
|
|
|
PerformanceLib
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
[Ppis]
|
|
|
|
gEfiEndOfPeiSignalPpiGuid # PPI SOMETIMES_PRODUCED
|
|
|
|
gEfiDxeIplPpiGuid # PPI SOMETIMES_PRODUCED
|
2007-09-24 13:38:43 +02:00
|
|
|
gEfiPeiDecompressPpiGuid
|
2007-11-27 03:47:37 +01:00
|
|
|
gEfiPeiReadOnlyVariable2PpiGuid
|
|
|
|
|
|
|
|
[Guids]
|
|
|
|
gEfiMemoryTypeInformationGuid
|
2007-07-05 09:05:28 +02:00
|
|
|
|
2007-08-30 11:11:54 +02:00
|
|
|
[FeaturePcd.IA32]
|
2007-09-28 10:22:33 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplEnableIdt
|
2007-08-30 11:11:54 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode
|
2007-07-05 09:05:28 +02:00
|
|
|
|
2007-12-10 04:47:56 +01:00
|
|
|
[FixedPcd.common]
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValuePeiHandoffToDxe
|
2008-05-07 08:58:06 +02:00
|
|
|
|
2007-07-05 09:05:28 +02:00
|
|
|
[Depex]
|
|
|
|
gEfiPeiMemoryDiscoveredPpiGuid
|
|
|
|
|