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

      2 # S3 SMM Boot Script Save State driver.

      3 #

      4 # It will install S3 SMM Save State protocol to store or record various IO operations to be replayed during an S3 resume.

      5 #

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

      7 #

      8 # This program and the accompanying materials are

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

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

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

     12 #

     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                      = SmmS3SaveState
     21   MODULE_UNI_FILE                = SmmS3SaveState.uni
     22   FILE_GUID                      = 2D59F041-53A4-40d0-A6CD-844DC0DFEF17
     23   MODULE_TYPE                    = DXE_SMM_DRIVER
     24   VERSION_STRING                 = 1.0
     25   PI_SPECIFICATION_VERSION       = 0x0001000A
     26   
     27   ENTRY_POINT                    = InitializeSmmS3SaveState
     28 
     29 #

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

     31 #

     32 #  VALID_ARCHITECTURES           = IA32 X64 IPF EBC

     33 #

     34 
     35 [Sources]
     36   SmmS3SaveState.c
     37   InternalSmmSaveState.h
     38 
     39 
     40 [Packages]
     41   MdePkg/MdePkg.dec
     42   MdeModulePkg/MdeModulePkg.dec
     43 
     44 [LibraryClasses]
     45   SmmServicesTableLib
     46   UefiDriverEntryPoint
     47   BaseMemoryLib
     48   BaseLib
     49   S3BootScriptLib
     50 
     51 [Protocols]
     52   gEfiS3SmmSaveStateProtocolGuid                ## PRODUCES

     53 
     54 [Depex]
     55   TRUE
     56 
     57 [UserExtensions.TianoCore."ExtraFiles"]
     58   SmmS3SaveStateExtra.uni
     59