Home | History | Annotate | Download | only in DxeDeferImageLoadLib
      1 ## @file

      2 #  Provides security service of deferred image load

      3 #

      4 #  The platform may need to defer the execution of an image because of security 

      5 #  considerations. These deferred images will be recorded and then reported by 

      6 #  installing an instance of the EFI_DEFERRED_IMAGE_LOAD_PROTOCOL.

      7 #

      8 # Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>

      9 # This program and the accompanying materials

     10 # are licensed and made available under the terms and conditions of the BSD License

     11 # which accompanies this distribution. The full text of the license may be found at

     12 # http://opensource.org/licenses/bsd-license.php

     13 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,

     14 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

     15 #

     16 ##

     17 
     18 [Defines]
     19   INF_VERSION                    = 0x00010005
     20   BASE_NAME                      = DxeDeferImageLoadLib
     21   MODULE_UNI_FILE                = DxeDeferImageLoadLib.uni
     22   FILE_GUID                      = 5E2FAE1F-41DA-4fbd-BC81-603CE5CD8497
     23   MODULE_TYPE                    = DXE_DRIVER
     24   VERSION_STRING                 = 1.0
     25   LIBRARY_CLASS                  = NULL|DXE_DRIVER UEFI_DRIVER DXE_RUNTIME_DRIVER UEFI_APPLICATION
     26   CONSTRUCTOR                    = DxeDeferImageLoadLibConstructor
     27 
     28 #

     29 # The following information is for reference only and not required by the build tools.

     30 #

     31 #  VALID_ARCHITECTURES           = IA32 X64 EBC

     32 #

     33 
     34 [Sources]
     35   DxeDeferImageLoadLib.c
     36   DxeDeferImageLoadLib.h
     37 
     38 [Packages]
     39   MdePkg/MdePkg.dec
     40   MdeModulePkg/MdeModulePkg.dec
     41   SecurityPkg/SecurityPkg.dec
     42 
     43 [LibraryClasses]
     44   UefiRuntimeServicesTableLib
     45   UefiBootServicesTableLib
     46   SecurityManagementLib
     47   MemoryAllocationLib
     48   DevicePathLib
     49   BaseMemoryLib
     50   PrintLib
     51   DebugLib 
     52   UefiLib
     53   PcdLib 
     54 
     55 [Protocols]
     56   gEfiFirmwareVolume2ProtocolGuid                        ## SOMETIMES_CONSUMES

     57   gEfiBlockIoProtocolGuid                                ## SOMETIMES_CONSUMES

     58   gEfiSimpleFileSystemProtocolGuid                       ## SOMETIMES_CONSUMES

     59   gEfiDeferredImageLoadProtocolGuid                      ## SOMETIMES_PRODUCES

     60   ## SOMETIMES_CONSUMES

     61   ## NOTIFY

     62   gEfiUserManagerProtocolGuid
     63    
     64 [Guids]
     65   gEfiGlobalVariableGuid                                  ## SOMETIMES_CONSUMES  ## Variable:L"BootOrder"

     66   
     67 [Pcd]
     68   gEfiSecurityPkgTokenSpaceGuid.PcdDeferImageLoadPolicy   ## SOMETIMES_CONSUMES

     69