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
|
|
|
#
|
2018-06-27 15:08:52 +02:00
|
|
|
# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
2007-07-19 10:36:30 +02:00
|
|
|
#
|
2019-04-04 01:05:13 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2007-07-19 10:36:30 +02:00
|
|
|
#
|
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2007-07-19 10:36:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = RuntimeDxe
|
2014-08-28 08:34:06 +02:00
|
|
|
MODULE_UNI_FILE = RuntimeDxe.uni
|
2007-07-19 10:36:30 +02:00
|
|
|
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
|
|
|
#
|
2018-06-29 05:27:00 +02:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC
|
2007-07-19 10:36:30 +02:00
|
|
|
#
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2007-07-19 10:36:30 +02:00
|
|
|
Crc32.c
|
|
|
|
Runtime.h
|
|
|
|
Runtime.c
|
2018-06-27 15:08:52 +02:00
|
|
|
|
2007-07-19 10:36:30 +02:00
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
2023-12-18 09:01:58 +01:00
|
|
|
UefiImageAllLib
|
2007-07-19 10:36:30 +02:00
|
|
|
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
|
2018-06-27 15:08:52 +02:00
|
|
|
|
2007-07-19 10:36:30 +02:00
|
|
|
[depex]
|
2014-08-28 08:34:06 +02:00
|
|
|
TRUE
|
|
|
|
|
|
|
|
[UserExtensions.TianoCore."ExtraFiles"]
|
2018-06-27 15:08:52 +02:00
|
|
|
RuntimeDxeExtra.uni
|