1## @file
2#  VGA Class Driver that managers VGA devices and produces Simple Text Output 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                      = VgaClassDxe
20  MODULE_UNI_FILE                = VgaClassDxe.uni
21  FILE_GUID                      = BF89F10D-B205-474f-96E3-7A7BB1B4A407
22  MODULE_TYPE                    = UEFI_DRIVER
23  VERSION_STRING                 = 1.0
24  ENTRY_POINT                    = InitializeVgaClass
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#
31#  DRIVER_BINDING                =  gVgaClassDriverBinding                       
32#  COMPONENT_NAME                =  gVgaClassComponentName
33#  COMPONENT_NAME2               =  gVgaClassComponentName2                    
34#
35
36[Sources]
37  ComponentName.c
38  VgaClass.h
39  VgaClass.c
40
41
42[Packages]
43  MdePkg/MdePkg.dec
44  IntelFrameworkPkg/IntelFrameworkPkg.dec
45  IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
46
47
48[LibraryClasses]
49  ReportStatusCodeLib
50  UefiBootServicesTableLib
51  MemoryAllocationLib
52  UefiLib
53  UefiDriverEntryPoint
54  DebugLib
55
56
57[Protocols]
58  gEfiSimpleTextOutProtocolGuid                 ## BY_START
59  gEfiVgaMiniPortProtocolGuid                   ## TO_START
60  gEfiPciIoProtocolGuid                         ## TO_START
61  gEfiDevicePathProtocolGuid                    ## TO_START
62
63[UserExtensions.TianoCore."ExtraFiles"]
64  VgaClassDxeExtra.uni
65