blob: 707b64cefd2b099f8f542ddb9040f1174c5eb53f [file] [log] [blame]
lgao47b202cb2010-02-23 23:58:38 +00001## @file
eric_tian804405e2008-06-30 05:08:49 +00002# Uga driver
3#
4# UGA is short hand for Universal Graphics Abstraction protocol.
5# This file is a verision of UgaIo the uses UnixThunk system calls as an IO
6# abstraction. For a PCI device UnixIo would be replaced with
7# a PCI IO abstraction that abstracted a specific PCI device.
hhtianf9b8ab52010-04-28 12:31:45 +00008# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
eric_tian804405e2008-06-30 05:08:49 +00009#
hhtianf9b8ab52010-04-28 12:31:45 +000010# This program and the accompanying materials
eric_tian804405e2008-06-30 05:08:49 +000011# are licensed and made available under the terms and conditions of the BSD License
12# which accompanies this distribution. The full text of the license may be found at
13# http://opensource.org/licenses/bsd-license.php
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16#
17#
lgao47b202cb2010-02-23 23:58:38 +000018##
eric_tian804405e2008-06-30 05:08:49 +000019
20[Defines]
21 INF_VERSION = 0x00010005
22 BASE_NAME = UnixUga
23 FILE_GUID = f33cad86-8985-11db-8040-0040d02b1835
24 MODULE_TYPE = UEFI_DRIVER
25 VERSION_STRING = 1.0
eric_tian804405e2008-06-30 05:08:49 +000026
27 ENTRY_POINT = InitializeUnixUga
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 = gUnixUgaDriverBinding
35# COMPONENT_NAME = gUnixUgaComponentName
36#
37
lgao47b202cb2010-02-23 23:58:38 +000038[Sources]
eric_tian804405e2008-06-30 05:08:49 +000039 ComponentName.c
40 UnixUgaScreen.c
41 UnixUgaDriver.c
42 UnixUgaInput.c
43 UnixUga.h
44 EntryPoint.c
45
46
47[Packages]
48 MdePkg/MdePkg.dec
49 UnixPkg/UnixPkg.dec
50
51
52[LibraryClasses]
53 UefiBootServicesTableLib
54 MemoryAllocationLib
55 BaseMemoryLib
56 UefiLib
57 UefiDriverEntryPoint
58 BaseLib
59 DebugLib
60
61
62[Guids]
63 gEfiEventExitBootServicesGuid # SOMETIMES_CONSUMED Create Event: EVENT_GROUP_GUID
64 gEfiUnixUgaGuid # ALWAYS_CONSUMED
65
66
67[Protocols]
68 gEfiSimpleTextInProtocolGuid # PROTOCOL BY_START
69 gEfiUnixUgaIoProtocolGuid # PROTOCOL BY_START
70 gEfiUgaDrawProtocolGuid # PROTOCOL BY_START
71 gEfiUnixIoProtocolGuid # PROTOCOL TO_START
72