1## @file 2# Status Code Handler Driver which produces general handlers and hook them onto the DXE status code router. 3# 4# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR> 5# (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR> 6# 7# 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# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13# 14# 15## 16 17[Defines] 18 INF_VERSION = 0x00010005 19 BASE_NAME = StatusCodeHandlerRuntimeDxe 20 MODULE_UNI_FILE = StatusCodeHandlerRuntimeDxe.uni 21 FILE_GUID = 6C2004EF-4E0E-4BE4-B14C-340EB4AA5891 22 MODULE_TYPE = DXE_RUNTIME_DRIVER 23 VERSION_STRING = 1.0 24 ENTRY_POINT = StatusCodeHandlerRuntimeDxeEntry 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 30# 31 32[Sources] 33 StatusCodeHandlerRuntimeDxe.c 34 StatusCodeHandlerRuntimeDxe.h 35 SerialStatusCodeWorker.c 36 MemoryStatusCodeWorker.c 37 38[Packages] 39 MdePkg/MdePkg.dec 40 MdeModulePkg/MdeModulePkg.dec 41 42[LibraryClasses] 43 SerialPortLib 44 UefiRuntimeLib 45 MemoryAllocationLib 46 UefiBootServicesTableLib 47 UefiDriverEntryPoint 48 HobLib 49 PcdLib 50 PrintLib 51 ReportStatusCodeLib 52 DebugLib 53 BaseMemoryLib 54 55[Guids] 56 ## SOMETIMES_CONSUMES ## HOB 57 ## SOMETIMES_PRODUCES ## SystemTable 58 gMemoryStatusCodeRecordGuid 59 gEfiStatusCodeDataTypeStringGuid ## SOMETIMES_CONSUMES ## UNDEFINED 60 gEfiEventVirtualAddressChangeGuid ## CONSUMES ## Event 61 gEfiEventExitBootServicesGuid ## CONSUMES ## Event 62 63[Protocols] 64 gEfiRscHandlerProtocolGuid ## CONSUMES 65 66[FeaturePcd] 67 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeReplayIn ## CONSUMES 68 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory ## CONSUMES 69 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial ## CONSUMES 70 71[Pcd] 72 gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize |128| gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory ## SOMETIMES_CONSUMES 73 74[Depex] 75 gEfiRscHandlerProtocolGuid 76 77[UserExtensions.TianoCore."ExtraFiles"] 78 StatusCodeHandlerRuntimeDxeExtra.uni 79