1## @file 2# Module produces EDK gEfiPrintProtocolGuid for backward compatibility support. 3# 4# EDK II retires old EDK Print Protocol and this module produces 5# gEfiPrintProtocolGuid based on PrintLib: 6# 1) If it links against BasePrintLib in MdePkg, it produces gEfiPrintProtocolGuid 7# without any prerequisites. 8# 2) If it links against DxePrintLibPrint2Protocol in MdeModulePkg, it produces 9# gEfiPrintProtocolGuid on top of gEfiPrint2ProtocolGuid. 10# 11# Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR> 12# 13# This program and the accompanying materials 14# are licensed and made available under the terms and conditions of the BSD License 15# which accompanies this distribution. The full text of the license may be found at 16# http://opensource.org/licenses/bsd-license.php 17# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 18# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 19# 20# 21## 22 23[Defines] 24 INF_VERSION = 0x00010005 25 BASE_NAME = PrintThunk 26 FILE_GUID = 3792FF94-8614-45ed-902B-1207BF1490A8 27 MODULE_TYPE = DXE_DRIVER 28 VERSION_STRING = 1.0 29 30 ENTRY_POINT = InitPrintThunk 31 32# 33# The following information is for reference only and not required by the build tools. 34# 35# VALID_ARCHITECTURES = IA32 X64 IPF EBC 36# 37 38[Sources] 39 PrintThunk.c 40 41[Packages] 42 MdePkg/MdePkg.dec 43 EdkCompatibilityPkg/EdkCompatibilityPkg.dec 44 45[LibraryClasses] 46 UefiDriverEntryPoint 47 DebugLib 48 UefiBootServicesTableLib 49 PrintLib 50 51[Protocols] 52 gEfiPrintProtocolGuid ## PRODUCES 53 54[Depex] 55 TRUE 56