2015-03-31 03:06:23 +02:00
|
|
|
## @file
|
|
|
|
# This is the first module taking control from the coreboot.
|
|
|
|
#
|
2018-06-29 05:16:48 +02:00
|
|
|
# Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
|
2015-03-31 03:06:23 +02:00
|
|
|
#
|
2019-04-04 01:03:26 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2015-03-31 03:06:23 +02:00
|
|
|
#
|
|
|
|
#
|
|
|
|
##
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = SecCore
|
|
|
|
FILE_GUID = BA7BE337-6CFB-4dbb-B26C-21EC2FC16073
|
|
|
|
MODULE_TYPE = SEC
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
2018-06-29 05:16:48 +02:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC
|
2015-03-31 03:06:23 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
[Sources]
|
|
|
|
SecMain.c
|
|
|
|
SecMain.h
|
|
|
|
FindPeiCore.c
|
|
|
|
|
|
|
|
[Sources.IA32]
|
2016-08-02 21:56:56 +02:00
|
|
|
Ia32/Stack.nasm
|
|
|
|
Ia32/SecEntry.nasm
|
2015-03-31 03:06:23 +02:00
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
UefiCpuPkg/UefiCpuPkg.dec
|
|
|
|
CorebootModulePkg/CorebootModulePkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
BaseMemoryLib
|
|
|
|
DebugLib
|
|
|
|
BaseLib
|
|
|
|
PcdLib
|
|
|
|
DebugAgentLib
|
|
|
|
UefiCpuLib
|
|
|
|
PeCoffGetEntryPointLib
|
|
|
|
PeCoffExtraActionLib
|
|
|
|
|
|
|
|
[Ppis]
|
|
|
|
gEfiSecPlatformInformationPpiGuid # PPI ALWAYS_PRODUCED
|
|
|
|
gEfiTemporaryRamSupportPpiGuid # PPI ALWAYS_PRODUCED
|
|
|
|
|
|
|
|
[Pcd]
|
|
|
|
gUefiCorebootModulePkgTokenSpaceGuid.PcdPayloadFdMemBase
|
|
|
|
gUefiCorebootModulePkgTokenSpaceGuid.PcdPayloadFdMemSize
|
|
|
|
|