1## @file 2# Report Status Code Handler PEIM which produces general handlers and hook them onto the PEI status code router. 3# 4# Copyright (c) 2009 - 2014, 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 = StatusCodeHandlerPei 19 MODULE_UNI_FILE = StatusCodeHandlerPei.uni 20 FILE_GUID = 9D225237-FA01-464C-A949-BAABC02D31D0 21 MODULE_TYPE = PEIM 22 VERSION_STRING = 1.0 23 ENTRY_POINT = StatusCodeHandlerPeiEntry 24 25# 26# The following information is for reference only and not required by the build tools. 27# 28# VALID_ARCHITECTURES = IA32 X64 IPF EBC (EBC is only for build) 29# 30 31[Sources] 32 StatusCodeHandlerPei.c 33 StatusCodeHandlerPei.h 34 SerialStatusCodeWorker.c 35 MemoryStausCodeWorker.c 36 37[Packages] 38 MdePkg/MdePkg.dec 39 MdeModulePkg/MdeModulePkg.dec 40 41[LibraryClasses] 42 PeimEntryPoint 43 PeiServicesLib 44 PcdLib 45 HobLib 46 SerialPortLib 47 ReportStatusCodeLib 48 PrintLib 49 DebugLib 50 BaseMemoryLib 51 52[Guids] 53 ## SOMETIMES_PRODUCES ## HOB 54 ## SOMETIMES_CONSUMES ## HOB 55 gMemoryStatusCodeRecordGuid 56 gEfiStatusCodeDataTypeStringGuid ## SOMETIMES_CONSUMES ## UNDEFINED 57 58[Ppis] 59 gEfiPeiRscHandlerPpiGuid ## CONSUMES 60 61[FeaturePcd] 62 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory ## CONSUMES 63 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial ## CONSUMES 64 65[Pcd] 66 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1|gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory ## SOMETIMES_CONSUMES 67 68[Depex] 69 gEfiPeiRscHandlerPpiGuid 70 71[UserExtensions.TianoCore."ExtraFiles"] 72 StatusCodeHandlerPeiExtra.uni 73