1 ## @file 2 # This driver produces GraphicsOutput protocol based on the GraphicsInfo HOB information. 3 # 4 # Copyright (c) 2016, Intel Corporation. All rights reserved.<BR> 5 # 6 # This program and the accompanying materials 7 # are licensed and made available under the terms and conditions of the BSD License 8 # which accompanies this distribution. The full text of the license may be found at 9 # http://opensource.org/licenses/bsd-license.php 10 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12 # 13 # 14 ## 15 16 [Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = GraphicsOutputDxe 19 FILE_GUID = 20830080-CC28-4169-9836-7F42B8D0C8C9 20 MODULE_TYPE = UEFI_DRIVER 21 VERSION_STRING = 1.0 22 ENTRY_POINT = InitializeGraphicsOutput 23 24 # 25 # The following information is for reference only and not required by the build tools. 26 # 27 # VALID_ARCHITECTURES = IA32 X64 28 # 29 30 [Sources.common] 31 GraphicsOutput.h 32 GraphicsOutput.c 33 ComponentName.c 34 35 [Packages] 36 MdePkg/MdePkg.dec 37 MdeModulePkg/MdeModulePkg.dec 38 39 [LibraryClasses] 40 UefiDriverEntryPoint 41 UefiBootServicesTableLib 42 DxeServicesTableLib 43 DebugLib 44 MemoryAllocationLib 45 BaseMemoryLib 46 DevicePathLib 47 FrameBufferBltLib 48 UefiLib 49 HobLib 50 51 [Guids] 52 gEfiGraphicsInfoHobGuid ## CONSUMES ## HOB 53 gEfiGraphicsDeviceInfoHobGuid ## CONSUMES ## HOB 54 55 [Protocols] 56 gEfiGraphicsOutputProtocolGuid ## BY_START 57 gEfiDevicePathProtocolGuid ## BY_START 58 gEfiPciIoProtocolGuid ## TO_START 59