1## @file 2# VGA Mini Port Driver that manages VGA device and produces VGA Mini Port Protocol. 3# 4# Copyright (c) 2006 - 2014, 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# 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 = VgaMiniPort 20 MODULE_UNI_FILE = VgaMiniPort.uni 21 FILE_GUID = 15C5E761-58D8-461a-9173-CAB020916264 22 MODULE_TYPE = UEFI_DRIVER 23 VERSION_STRING = 1.0 24 ENTRY_POINT = PciVgaMiniPortDriverEntryPoint 25 26# 27# The following information is for reference only and not required by the build tools. 28# 29# VALID_ARCHITECTURES = IA32 X64 IPF EBC 30# DRIVER_BINDING = gPciVgaMiniPortDriverBinding; 31# COMPONENT_NAME = gPciVgaMiniPortComponentName; 32# COMPONENT_NAME2 = gPciVgaMiniPortComponentName2; 33# 34 35[Sources] 36 ComponentName.c 37 VgaMiniPort.c 38 VgaMiniPort.h 39 40[Packages] 41 MdePkg/MdePkg.dec 42 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec 43 44[LibraryClasses] 45 UefiLib 46 DebugLib 47 UefiBootServicesTableLib 48 UefiDriverEntryPoint 49 BaseMemoryLib 50 MemoryAllocationLib 51 52[Protocols] 53 gEfiPciIoProtocolGuid ## TO_START 54 gEfiVgaMiniPortProtocolGuid ## BY_START 55 56[UserExtensions.TianoCore."ExtraFiles"] 57 VgaMiniPortExtra.uni 58