Last change
on this file was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.6 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # Produces the Legacy Region 2 Protocol.
|
---|
3 | #
|
---|
4 | # This generic implementation of the Legacy Region 2 Protocol does not actually
|
---|
5 | # perform any lock/unlock operations. This module may be used on platforms
|
---|
6 | # that do not provide HW locking of the legacy memory regions. It can also
|
---|
7 | # be used as a template driver for implementing the Legacy Region 2 Protocol on
|
---|
8 | # a platform that does support HW locking of the legacy memory regions.
|
---|
9 | #
|
---|
10 | # Note: This module does not fully comply with PI Specification of Legacy Region 2
|
---|
11 | # Protocol. For Lock/UnLock/Decode, EFI_SUCCESS is returned although the region's
|
---|
12 | # attributes were not actually modified.
|
---|
13 | #
|
---|
14 | # Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
15 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
16 | #
|
---|
17 | ##
|
---|
18 |
|
---|
19 | [Defines]
|
---|
20 | INF_VERSION = 0x00010005
|
---|
21 | BASE_NAME = LegacyRegion2Dxe
|
---|
22 | MODULE_UNI_FILE = LegacyRegion2Dxe.uni
|
---|
23 | FILE_GUID = EC2BEECA-E84A-445B-869B-F7A73C96F58A
|
---|
24 | MODULE_TYPE = DXE_DRIVER
|
---|
25 | VERSION_STRING = 1.0
|
---|
26 | ENTRY_POINT = LegacyRegion2Install
|
---|
27 |
|
---|
28 | #
|
---|
29 | # The following information is for reference only and not required by the build tools.
|
---|
30 | #
|
---|
31 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
32 | #
|
---|
33 |
|
---|
34 | [Sources]
|
---|
35 | LegacyRegion2.c
|
---|
36 | LegacyRegion2.h
|
---|
37 |
|
---|
38 | [Packages]
|
---|
39 | MdePkg/MdePkg.dec
|
---|
40 | MdeModulePkg/MdeModulePkg.dec
|
---|
41 |
|
---|
42 | [LibraryClasses]
|
---|
43 | UefiDriverEntryPoint
|
---|
44 | DebugLib
|
---|
45 | UefiBootServicesTableLib
|
---|
46 |
|
---|
47 | [Protocols]
|
---|
48 | gEfiLegacyRegion2ProtocolGuid ## PRODUCES
|
---|
49 |
|
---|
50 | [Depex]
|
---|
51 | TRUE
|
---|
52 |
|
---|
53 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
54 | LegacyRegion2DxeExtra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.