Home | History | Annotate | Download | only in RuntimeDxe
      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 #

      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                      = StatusCodeHandlerRuntimeDxe
     19   MODULE_UNI_FILE                = StatusCodeHandlerRuntimeDxe.uni
     20   FILE_GUID                      = 6C2004EF-4E0E-4BE4-B14C-340EB4AA5891
     21   MODULE_TYPE                    = DXE_RUNTIME_DRIVER
     22   VERSION_STRING                 = 1.0
     23   ENTRY_POINT                    = StatusCodeHandlerRuntimeDxeEntry
     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

     29 #

     30 
     31 [Sources]
     32   StatusCodeHandlerRuntimeDxe.c
     33   StatusCodeHandlerRuntimeDxe.h
     34   SerialStatusCodeWorker.c
     35   MemoryStatusCodeWorker.c
     36 
     37 [Packages]
     38   MdePkg/MdePkg.dec
     39   MdeModulePkg/MdeModulePkg.dec
     40 
     41 [LibraryClasses]
     42   SerialPortLib
     43   UefiRuntimeLib
     44   MemoryAllocationLib
     45   UefiBootServicesTableLib
     46   UefiDriverEntryPoint
     47   HobLib
     48   PcdLib
     49   PrintLib
     50   ReportStatusCodeLib
     51   DebugLib
     52   BaseMemoryLib
     53   
     54 [Guids]
     55   gMemoryStatusCodeRecordGuid                   ## SOMETIMES_CONSUMES   ## HOB

     56   gEfiStatusCodeDataTypeStringGuid              ## SOMETIMES_CONSUMES   ## UNDEFINED

     57   gEfiEventVirtualAddressChangeGuid             ## CONSUMES ## Event

     58   gEfiEventExitBootServicesGuid                 ## CONSUMES ## Event

     59 
     60 [Protocols]
     61   gEfiRscHandlerProtocolGuid                    ## CONSUMES

     62 
     63 [FeaturePcd]
     64   gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeReplayIn  ## CONSUMES

     65   gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory ## CONSUMES

     66   gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial ## CONSUMES

     67 
     68 [Pcd]
     69   gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize |128| gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory   ## SOMETIMES_CONSUMES

     70 
     71 [Depex]
     72   gEfiRscHandlerProtocolGuid
     73 
     74 [UserExtensions.TianoCore."ExtraFiles"]
     75   StatusCodeHandlerRuntimeDxeExtra.uni
     76