2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2008-12-23 17:20:43 +01:00
|
|
|
# Module that produces EFI runtime virtual switch over services.
|
2007-07-19 10:36:30 +02:00
|
|
|
#
|
2008-12-23 17:20:43 +01:00
|
|
|
# This runtime module installs Runtime Architectural Protocol and registers
|
|
|
|
# CalculateCrc32 boot services table, SetVirtualAddressMap & ConvertPointer
|
|
|
|
# runtime services table.
|
2008-12-12 02:27:36 +01:00
|
|
|
#
|
2010-04-24 11:49:11 +02:00
|
|
|
# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
2007-07-19 10:36:30 +02:00
|
|
|
#
|
2010-04-24 11:49:11 +02:00
|
|
|
# This program and the accompanying materials
|
2007-07-19 10:36:30 +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.
|
|
|
|
#
|
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2007-07-19 10:36:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = RuntimeDxe
|
|
|
|
FILE_GUID = B601F8C4-43B7-4784-95B1-F4226CB40CEE
|
|
|
|
MODULE_TYPE = DXE_RUNTIME_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
|
|
|
|
ENTRY_POINT = RuntimeDriverInitialize
|
|
|
|
|
2008-10-28 08:17:17 +01:00
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
2007-07-19 10:36:30 +02:00
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2007-07-19 10:36:30 +02:00
|
|
|
Crc32.c
|
|
|
|
Runtime.h
|
|
|
|
Runtime.c
|
|
|
|
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
PeCoffLib
|
|
|
|
CacheMaintenanceLib
|
|
|
|
UefiBootServicesTableLib
|
2008-12-07 23:49:44 +01:00
|
|
|
UefiLib
|
2007-07-19 10:36:30 +02:00
|
|
|
UefiRuntimeServicesTableLib
|
|
|
|
ReportStatusCodeLib
|
|
|
|
DebugLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
BaseLib
|
|
|
|
|
|
|
|
[Protocols]
|
2009-01-20 09:27:13 +01:00
|
|
|
gEfiRuntimeArchProtocolGuid ## PRODUCES
|
|
|
|
gEfiLoadedImageProtocolGuid ## CONSUMES
|
2010-01-27 05:00:58 +01:00
|
|
|
|
2007-07-19 10:36:30 +02:00
|
|
|
[depex]
|
|
|
|
TRUE
|