1 #/** @file 2 # PE/COFF Loader Library implementation that wraps a protocol passed up from 3 # SEC/PEI via a HOB. This is done to save space. 4 # 5 # Copyright (c) 2010, Intel Corporation. All rights reserved.<BR> 6 # Portions copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR> 7 # This program and the accompanying materials 8 # are licensed and made available under the terms and conditions of the BSD License 9 # which accompanies this distribution. The full text of the license may be found at 10 # http://opensource.org/licenses/bsd-license.php 11 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13 # 14 # 15 #**/ 16 17 [Defines] 18 INF_VERSION = 0x00010005 19 BASE_NAME = DxeHobPeCoffLib 20 FILE_GUID = 671C6FD7-99FB-4EE3-B640-4B1D463BC3B5 21 MODULE_TYPE = DXE_DRIVER 22 VERSION_STRING = 1.0 23 LIBRARY_CLASS = PeCoffLib 24 CONSTRUCTOR = DxeHobPeCoffLibConstructor 25 26 27 # 28 # VALID_ARCHITECTURES = IA32 X64 IPF EBC ARM 29 # 30 31 [Sources.common] 32 DxeHobPeCoff.c 33 34 35 [Packages] 36 MdePkg/MdePkg.dec 37 EmbeddedPkg/EmbeddedPkg.dec 38 39 [LibraryClasses] 40 DebugLib 41 HobLib 42 43 [Protocols] 44 gPeCoffLoaderProtocolGuid 45