1## @file
2#  This module provides EFI_GRAPHIC_OUT_PROTOCOL based on functions of video
3#  on legacy BIOS.
4#
5#  Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
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                      = BiosVideo
19  FILE_GUID                      = 29CF55F8-B675-4f5d-8F2F-B87A3ECFD063
20  MODULE_TYPE                    = UEFI_DRIVER
21  VERSION_STRING                 = 1.0
22  ENTRY_POINT                    = BiosVideoDriverEntryPoint
23
24[Packages]
25  MdePkg/MdePkg.dec
26  IntelFrameworkPkg/IntelFrameworkPkg.dec
27  IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
28  DuetPkg/DuetPkg.dec
29
30[LibraryClasses]
31  UefiLib
32  DebugLib
33  UefiBootServicesTableLib
34  BaseMemoryLib
35  UefiDriverEntryPoint
36  DevicePathLib
37
38[Sources]
39  BiosVideo.h
40  BiosVideo.c
41  ComponentName.c
42  VesaBiosExtensions.h
43  LegacyBiosThunk.c
44
45[Protocols]
46  gEfiPciIoProtocolGuid
47  gEfiVgaMiniPortProtocolGuid
48  gEfiLegacy8259ProtocolGuid
49  gEfiEdidDiscoveredProtocolGuid
50  gEfiEdidActiveProtocolGuid
51