2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2007-07-19 12:09:07 +02:00
|
|
|
# Emulation Variable for EFI_RUNTIME_SERVICES.
|
|
|
|
#
|
|
|
|
# This module provides three EFI_RUNTIME_SERVICES: SetVariable, GetVariable, GetNextVariableName
|
2010-02-24 01:21:16 +01:00
|
|
|
# Copyright (c) 2006 - 2010, Intel Corporation
|
2007-07-19 12:09:07 +02:00
|
|
|
#
|
|
|
|
# All rights reserved. This program and the accompanying materials
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2007-07-19 12:09:07 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = EmuVariableRuntimeDxe
|
2007-10-31 09:58:40 +01:00
|
|
|
FILE_GUID = 02B01AD5-7E59-43e8-A6D8-238180613A5A
|
2007-07-19 12:09:07 +02:00
|
|
|
MODULE_TYPE = DXE_RUNTIME_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = VariableServiceInitialize
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC
|
|
|
|
#
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2007-07-19 12:09:07 +02:00
|
|
|
InitVariable.c
|
|
|
|
EmuVariable.c
|
|
|
|
Variable.h
|
|
|
|
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
BaseLib
|
|
|
|
UefiLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
UefiRuntimeLib
|
|
|
|
DebugLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
BaseMemoryLib
|
|
|
|
|
|
|
|
|
2007-08-17 23:04:00 +02:00
|
|
|
[Protocols]
|
2009-02-18 04:13:32 +01:00
|
|
|
gEfiVariableArchProtocolGuid ## PRODUCES
|
|
|
|
gEfiVariableWriteArchProtocolGuid ## PRODUCES
|
2007-07-19 12:09:07 +02:00
|
|
|
|
2009-02-03 12:09:53 +01:00
|
|
|
[Guids]
|
2009-02-25 14:08:46 +01:00
|
|
|
gEfiEventVirtualAddressChangeGuid ## PRODUCES ## Event
|
2009-04-27 09:06:01 +02:00
|
|
|
gEfiGlobalVariableGuid ## PRODUCES ## Variable Guid
|
2009-02-27 06:35:08 +01:00
|
|
|
gEfiVariableGuid
|
2009-02-03 12:09:53 +01:00
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Pcd]
|
2009-09-07 22:18:14 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvStoreReserved
|
2007-11-05 17:11:50 +01:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdMaxHardwareErrorVariableSize
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize
|
2009-03-04 08:21:11 +01:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdVariableCollectStatistics
|
2009-04-27 09:06:01 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdHwErrStorageSize
|
2007-11-05 17:11:50 +01:00
|
|
|
|
2007-07-19 12:09:07 +02:00
|
|
|
[Depex]
|
|
|
|
TRUE
|
|
|
|
|
2009-02-03 01:31:26 +01:00
|
|
|
# [Event]
|
|
|
|
# ##
|
|
|
|
# # Event will be signaled for VIRTUAL_ADDRESS_CHANGE event.
|
|
|
|
# #
|
|
|
|
# EVENT_TYPE_NOTIFY_SIGNAL ## PRODUCES
|
|
|
|
#
|
|
|
|
#
|