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

      2 #  NvVarsFileLib

      3 #

      4 #  This library saves and restores non-volatile variables in a

      5 #  file within a file system.

      6 #

      7 #  Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>

      8 #

      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 
     19 [Defines]
     20   INF_VERSION                    = 0x00010005
     21   BASE_NAME                      = NvVarsFileLib
     22   FILE_GUID                      = 9172fe8b-9a36-40f8-bba5-5e57a44390bd
     23   MODULE_TYPE                    = UEFI_DRIVER
     24   VERSION_STRING                 = 1.0
     25   LIBRARY_CLASS                  = NvVarsFileLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER UEFI_DRIVER
     26 
     27 #

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

     29 #

     30 #  VALID_ARCHITECTURES           = IA32 X64 IPF EBC

     31 #

     32 
     33 [Sources]
     34   FsAccess.c
     35   NvVarsFileLib.c
     36 
     37 [Packages]
     38   MdePkg/MdePkg.dec
     39   MdeModulePkg/MdeModulePkg.dec
     40   OvmfPkg/OvmfPkg.dec
     41   ShellPkg/ShellPkg.dec
     42 
     43 [LibraryClasses]
     44   BaseLib
     45   BaseMemoryLib
     46   DebugLib
     47   FileHandleLib
     48   MemoryAllocationLib
     49   SerializeVariablesLib
     50 
     51 [Protocols]
     52   gEfiSimpleFileSystemProtocolGuid              ## CONSUMES

     53 
     54 
     55 [Guids]
     56   gEfiFileInfoGuid
     57 
     58 [Depex]
     59   gEfiVariableWriteArchProtocolGuid
     60 
     61