Home | History | Annotate | Download | only in SaveMemoryConfig
      1 #/*++
      2 #
      3 #  Copyright (c)  1999  - 2014, Intel Corporation. All rights reserved
      4 #                                                                                  
      5 # This program and the accompanying materials are licensed and made available under
      6 # the terms and conditions of the BSD License that accompanies this distribution.  
      7 # The full text of the license may be found at                                     
      8 # http://opensource.org/licenses/bsd-license.php.                                  
      9 #                                                                                  
     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 #  Module Name:
     17 #
     18 #   SaveMemoryConfig.inf
     19 #
     20 #  Abstract:
     21 #
     22 #
     23 --*/
     24 
     25 [defines]
     26   INF_VERSION                    = 0x00010005
     27   BASE_NAME                      = SaveMemoryConfig
     28   FILE_GUID                      = E0ECBEC9-B193-4351-A488-36A655F22F9F
     29   MODULE_TYPE                    = DXE_DRIVER
     30   VERSION_STRING                 = 1.0
     31   ENTRY_POINT                    = SaveMemoryConfigEntryPoint
     32 
     33 [sources.common]
     34   SaveMemoryConfig.c
     35 
     36 [Packages]
     37   MdePkg/MdePkg.dec
     38   Vlv2TbltDevicePkg/PlatformPkg.dec
     39   Vlv2DeviceRefCodePkg/Vlv2DeviceRefCodePkg.dec
     40 
     41 [LibraryClasses]
     42   UefiDriverEntryPoint
     43   UefiBootServicesTableLib
     44   HobLib
     45   DebugLib
     46   UefiRuntimeServicesTableLib
     47   UefiLib
     48   BaseLib
     49 
     50 [Protocols]
     51   gMemInfoProtocolGuid
     52 
     53 [Guids]
     54   gEfiMemoryConfigDataGuid
     55   gEfiPlatformInfoGuid
     56   gEfiPlatformBootModeGuid
     57   gEfiVlv2VariableGuid
     58   #gEfiHobListGuid
     59   #gEfiPlatformInfoGuid
     60   #gEfiPlatformBootModeGuid
     61   #gEfiGlobalVariableGuid
     62   #gEfiMemoryConfigDataGuid
     63 
     64 [Depex]
     65   gEfiVariableArchProtocolGuid AND
     66   gEfiVariableWriteArchProtocolGuid
     67