2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2008-10-28 10:45:52 +01:00
|
|
|
# Instance of UEFI Runtime Library.
|
2007-06-27 10:55:31 +02:00
|
|
|
#
|
2008-10-28 10:45:52 +01:00
|
|
|
# Instance of UEFI Runtime Library, with hooked EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE and
|
|
|
|
# EVT_SIGNAL_EXIT_BOOT_SERVICES event, to provide runtime services.
|
2008-11-13 09:30:16 +01:00
|
|
|
# This instance also supports SAL drivers for better performance.
|
2008-10-28 10:45:52 +01:00
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
# Copyright (c) 2006 - 2010, Intel Corporation.
|
2007-06-27 10:55:31 +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-06-27 10:55:31 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
2007-07-02 11:34:25 +02:00
|
|
|
BASE_NAME = UefiRuntimeLib
|
2007-06-27 10:55:31 +02:00
|
|
|
FILE_GUID = b1ee6c28-54aa-4d17-b705-3e28ccb27b2e
|
2008-11-13 09:30:16 +01:00
|
|
|
MODULE_TYPE = UEFI_DRIVER
|
2007-06-27 10:55:31 +02:00
|
|
|
VERSION_STRING = 1.0
|
2008-11-13 09:30:16 +01:00
|
|
|
LIBRARY_CLASS = UefiRuntimeLib|UEFI_DRIVER DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER UEFI_APPLICATION DXE_SMM_DRIVER
|
2007-06-27 10:55:31 +02:00
|
|
|
|
|
|
|
CONSTRUCTOR = RuntimeDriverLibConstruct
|
|
|
|
DESTRUCTOR = RuntimeDriverLibDeconstruct
|
|
|
|
|
|
|
|
#
|
2008-11-13 09:30:16 +01:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
2007-06-27 10:55:31 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2007-06-27 10:55:31 +02:00
|
|
|
RuntimeLib.c
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
UefiBootServicesTableLib
|
2007-08-08 22:44:44 +02:00
|
|
|
UefiRuntimeServicesTableLib
|
2007-06-27 10:55:31 +02:00
|
|
|
DebugLib
|
2009-02-03 09:50:03 +01:00
|
|
|
|
|
|
|
[Guids]
|
|
|
|
gEfiEventExitBootServicesGuid ## PRODUCES ## Event
|
|
|
|
gEfiEventVirtualAddressChangeGuid ## PRODUCES ## Event
|
2007-06-27 10:55:31 +02:00
|
|
|
|