1 | ## @file
|
---|
2 | # Instance of UEFI Runtime Library.
|
---|
3 | #
|
---|
4 | # Instance of UEFI Runtime Library, with hooked EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE and
|
---|
5 | # EVT_SIGNAL_EXIT_BOOT_SERVICES event, to provide runtime services.
|
---|
6 | # This instance also supports SAL drivers for better performance.
|
---|
7 | #
|
---|
8 | # Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
9 | #
|
---|
10 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
11 | #
|
---|
12 | #
|
---|
13 | ##
|
---|
14 |
|
---|
15 | [Defines]
|
---|
16 | INF_VERSION = 0x00010005
|
---|
17 | BASE_NAME = UefiRuntimeLib
|
---|
18 | MODULE_UNI_FILE = UefiRuntimeLib.uni
|
---|
19 | FILE_GUID = b1ee6c28-54aa-4d17-b705-3e28ccb27b2e
|
---|
20 | MODULE_TYPE = DXE_RUNTIME_DRIVER
|
---|
21 | VERSION_STRING = 1.0
|
---|
22 | LIBRARY_CLASS = UefiRuntimeLib|DXE_RUNTIME_DRIVER
|
---|
23 |
|
---|
24 | CONSTRUCTOR = RuntimeDriverLibConstruct
|
---|
25 | DESTRUCTOR = RuntimeDriverLibDeconstruct
|
---|
26 |
|
---|
27 | #
|
---|
28 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
29 | #
|
---|
30 |
|
---|
31 |
|
---|
32 | [Sources]
|
---|
33 | RuntimeLib.c
|
---|
34 |
|
---|
35 | [Packages]
|
---|
36 | MdePkg/MdePkg.dec
|
---|
37 |
|
---|
38 | [LibraryClasses]
|
---|
39 | UefiBootServicesTableLib
|
---|
40 | UefiRuntimeServicesTableLib
|
---|
41 | DebugLib
|
---|