2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2008-04-18 05:09:54 +02:00
|
|
|
#
|
2010-04-28 14:39:50 +02:00
|
|
|
# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
|
|
|
# This program and the accompanying materials
|
2008-04-18 05:09:54 +02:00
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
#
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
# Module Name:
|
|
|
|
#
|
|
|
|
# FSVariable.inf
|
|
|
|
#
|
|
|
|
# Abstract:
|
|
|
|
#
|
|
|
|
# Component description file for variable module
|
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2008-04-18 05:09:54 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = FSVariable
|
|
|
|
FILE_GUID = A36495C1-C205-414e-B71F-4BE3476D699C
|
|
|
|
MODULE_TYPE = DXE_RUNTIME_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = VariableServiceInitialize
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
DuetPkg/DuetPkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2008-04-18 05:09:54 +02:00
|
|
|
FSVariable.h
|
|
|
|
VariableStorage.h
|
|
|
|
FSVariable.c
|
|
|
|
FileStorage.c
|
|
|
|
MemStorage.c
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[LibraryClasses]
|
2008-04-18 05:09:54 +02:00
|
|
|
PcdLib
|
|
|
|
BaseMemoryLib
|
|
|
|
BaseLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
UefiRuntimeLib
|
|
|
|
DebugLib
|
|
|
|
UefiLib
|
|
|
|
HobLib
|
|
|
|
DxeServicesTableLib
|
|
|
|
DevicePathLib
|
|
|
|
UefiDriverEntryPoint
|
2010-11-24 04:23:30 +01:00
|
|
|
MemoryAllocationLib
|
2008-04-18 05:09:54 +02:00
|
|
|
|
|
|
|
[Guids]
|
|
|
|
gEfiFlashMapHobGuid
|
2009-02-27 06:35:08 +01:00
|
|
|
gEfiVariableGuid
|
2009-04-29 04:42:01 +02:00
|
|
|
gEfiGlobalVariableGuid ## PRODUCES ## Variable Guid
|
2010-01-25 02:52:31 +01:00
|
|
|
|
2008-04-18 05:09:54 +02:00
|
|
|
[Protocols]
|
|
|
|
gEfiVariableArchProtocolGuid
|
|
|
|
gEfiVariableWriteArchProtocolGuid
|
|
|
|
gEfiSimpleFileSystemProtocolGuid
|
|
|
|
gEfiBlockIoProtocolGuid
|
|
|
|
|
|
|
|
[Pcd]
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize
|
2008-04-30 11:08:49 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdMaxHardwareErrorVariableSize
|
2009-04-29 04:42:01 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdHwErrStorageSize
|
2010-01-25 02:52:31 +01:00
|
|
|
|
2008-04-29 09:50:58 +02:00
|
|
|
[Depex]
|
|
|
|
TRUE
|