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