• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2#  Module that produces EFI runtime virtual switch over services.
3#
4#  This runtime module installs Runtime Architectural Protocol and registers
5#  CalculateCrc32 boot services table, SetVirtualAddressMap & ConvertPointer
6#  runtime services table.
7#
8#  Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
9#
10#  This program and the accompanying materials
11#  are licensed and made available under the terms and conditions of the BSD License
12#  which accompanies this distribution. The full text of the license may be found at
13#  http://opensource.org/licenses/bsd-license.php
14#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16#
17#
18##
19
20
21[Defines]
22  INF_VERSION                    = 0x00010005
23  BASE_NAME                      = RuntimeDxe
24  MODULE_UNI_FILE                = RuntimeDxe.uni
25  FILE_GUID                      = B601F8C4-43B7-4784-95B1-F4226CB40CEE
26  MODULE_TYPE                    = DXE_RUNTIME_DRIVER
27  VERSION_STRING                 = 1.0
28
29  ENTRY_POINT                    = RuntimeDriverInitialize
30
31#
32# The following information is for reference only and not required by the build tools.
33#
34#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
35#
36
37[Sources]
38  Crc32.c
39  Runtime.h
40  Runtime.c
41
42
43[Packages]
44  MdePkg/MdePkg.dec
45
46[LibraryClasses]
47  PeCoffLib
48  CacheMaintenanceLib
49  UefiBootServicesTableLib
50  UefiLib
51  UefiRuntimeServicesTableLib
52  ReportStatusCodeLib
53  DebugLib
54  UefiDriverEntryPoint
55  BaseLib
56
57[Protocols]
58  gEfiRuntimeArchProtocolGuid                   ## PRODUCES
59  gEfiLoadedImageProtocolGuid                   ## CONSUMES
60
61[depex]
62  TRUE
63
64[UserExtensions.TianoCore."ExtraFiles"]
65  RuntimeDxeExtra.uni