1## @file 2# Video driver based on legacy bios. 3# 4# This driver by using Legacy Bios protocol service to support csm Video 5# and produce Graphics Output Protocol. 6# 7# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR> 8# 9# This program and the accompanying materials 10# are licensed and made available under the terms and conditions 11# of the BSD License which accompanies this distribution. The 12# full text of the license may be found at 13# http://opensource.org/licenses/bsd-license.php 14# 15# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 16# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 17# 18## 19 20[Defines] 21 INF_VERSION = 0x00010005 22 BASE_NAME = FbGop 23 FILE_GUID = 0B04B2ED-861C-42cd-A22F-C3AAFACCB896 24 MODULE_TYPE = UEFI_DRIVER 25 VERSION_STRING = 1.0 26 27 ENTRY_POINT = FbGopEntryPoint 28 29# 30# The following information is for reference only and not required by the build tools. 31# 32# VALID_ARCHITECTURES = IA32 X64 IPF EBC 33# 34# DRIVER_BINDING = gBiosVideoDriverBinding 35# COMPONENT_NAME = gBiosVideoComponentName 36# 37 38[Sources] 39 FbGop.c 40 FbGop.h 41 ComponentName.c 42 43 44[Packages] 45 MdePkg/MdePkg.dec 46 MdeModulePkg/MdeModulePkg.dec 47 CorebootModulePkg/CorebootModulePkg.dec 48 49[LibraryClasses] 50 MemoryAllocationLib 51 DevicePathLib 52 UefiLib 53 UefiBootServicesTableLib 54 UefiDriverEntryPoint 55 BaseMemoryLib 56 ReportStatusCodeLib 57 DebugLib 58 PcdLib 59 HobLib 60 61[Guids] 62 gUefiFrameBufferInfoGuid 63 64[Protocols] 65 gEfiGraphicsOutputProtocolGuid # PROTOCOL BY_START 66 gEfiPciIoProtocolGuid # PROTOCOL TO_START 67 gEfiDevicePathProtocolGuid # PROTOCOL TO_START 68 gEfiEdidDiscoveredProtocolGuid 69 gEfiEdidActiveProtocolGuid 70 71[Pcd] 72 gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution 73 gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution 74