1## @file 2# This is the first module taking control from the coreboot. 3# 4# Copyright (c) 2013 - 2016, Intel Corporation. All rights reserved.<BR> 5# 6# This program and the accompanying materials 7# are licensed and made available under the terms and conditions of the BSD License 8# which accompanies this distribution. The full text of the license may be found at 9# http://opensource.org/licenses/bsd-license.php. 10# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12# 13# 14## 15 16[Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = SecCore 19 FILE_GUID = BA7BE337-6CFB-4dbb-B26C-21EC2FC16073 20 MODULE_TYPE = SEC 21 VERSION_STRING = 1.0 22 23 24# 25# The following information is for reference only and not required by the build tools. 26# 27# VALID_ARCHITECTURES = IA32 X64 IPF EBC 28# 29 30[Sources] 31 SecMain.c 32 SecMain.h 33 FindPeiCore.c 34 35[Sources.IA32] 36 Ia32/Stack.nasm 37 Ia32/SecEntry.nasm 38 39[Packages] 40 MdePkg/MdePkg.dec 41 MdeModulePkg/MdeModulePkg.dec 42 UefiCpuPkg/UefiCpuPkg.dec 43 CorebootModulePkg/CorebootModulePkg.dec 44 45[LibraryClasses] 46 BaseMemoryLib 47 DebugLib 48 BaseLib 49 PcdLib 50 DebugAgentLib 51 UefiCpuLib 52 PeCoffGetEntryPointLib 53 PeCoffExtraActionLib 54 55[Ppis] 56 gEfiSecPlatformInformationPpiGuid # PPI ALWAYS_PRODUCED 57 gEfiTemporaryRamSupportPpiGuid # PPI ALWAYS_PRODUCED 58 59[Pcd] 60 gUefiCorebootModulePkgTokenSpaceGuid.PcdPayloadFdMemBase 61 gUefiCorebootModulePkgTokenSpaceGuid.PcdPayloadFdMemSize 62 63