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 - 2014, Intel Corporation. All rights reserved.<BR> 15 # This program and the accompanying materials 16 # are licensed and made available under the terms and conditions of the BSD License 17 # which accompanies this distribution. The full text of the license may be found at 18 # http://opensource.org/licenses/bsd-license.php 19 # 20 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 21 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 22 # 23 ## 24 25 [Defines] 26 INF_VERSION = 0x00010005 27 BASE_NAME = LegacyRegion2Dxe 28 MODULE_UNI_FILE = LegacyRegion2Dxe.uni 29 FILE_GUID = EC2BEECA-E84A-445B-869B-F7A73C96F58A 30 MODULE_TYPE = DXE_DRIVER 31 VERSION_STRING = 1.0 32 ENTRY_POINT = LegacyRegion2Install 33 34 # 35 # The following information is for reference only and not required by the build tools. 36 # 37 # VALID_ARCHITECTURES = IA32 X64 IPF EBC 38 # 39 40 [Sources] 41 LegacyRegion2.c 42 LegacyRegion2.h 43 44 [Packages] 45 MdePkg/MdePkg.dec 46 MdeModulePkg/MdeModulePkg.dec 47 48 [LibraryClasses] 49 UefiDriverEntryPoint 50 DebugLib 51 UefiBootServicesTableLib 52 53 [Protocols] 54 gEfiLegacyRegion2ProtocolGuid ## PRODUCES 55 56 [Depex] 57 TRUE 58 59 [UserExtensions.TianoCore."ExtraFiles"] 60 LegacyRegion2DxeExtra.uni 61