1 ## @file 2 # Produces Framework Legacy Region Protocol. 3 # 4 # This generic implementation of the Legacy Region 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 Protocol on 8 # a platform that does support HW locking of the legacy memory regions. 9 # 10 # Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR> 11 # This program and the accompanying materials 12 # are licensed and made available under the terms and conditions of the BSD License 13 # which accompanies this distribution. The full text of the license may be found at 14 # http://opensource.org/licenses/bsd-license.php 15 # 16 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 17 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 18 # 19 ## 20 21 [Defines] 22 INF_VERSION = 0x00010005 23 BASE_NAME = LegacyRegionDxe 24 MODULE_UNI_FILE = LegacyRegionDxe.uni 25 FILE_GUID = 8C439043-85CA-467a-96F1-CB14F4D0DCDA 26 MODULE_TYPE = DXE_DRIVER 27 VERSION_STRING = 1.0 28 ENTRY_POINT = LegacyRegionInstall 29 30 # 31 # The following information is for reference only and not required by the build tools. 32 # 33 # VALID_ARCHITECTURES = IA32 X64 IPF EBC 34 # 35 36 [Sources] 37 LegacyRegion.c 38 39 [Packages] 40 MdePkg/MdePkg.dec 41 IntelFrameworkPkg/IntelFrameworkPkg.dec 42 43 [LibraryClasses] 44 UefiDriverEntryPoint 45 DebugLib 46 UefiBootServicesTableLib 47 48 [Protocols] 49 gEfiLegacyRegionProtocolGuid ## PRODUCES 50 51 [Depex] 52 TRUE 53 54 [UserExtensions.TianoCore."ExtraFiles"] 55 LegacyRegionDxeExtra.uni 56