lgao4 | 7b202cb | 2010-02-23 23:58:38 +0000 | [diff] [blame^] | 1 | ## @file
|
eric_tian | 804405e | 2008-06-30 05:08:49 +0000 | [diff] [blame] | 2 | # 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.
|
lgao4 | 7b202cb | 2010-02-23 23:58:38 +0000 | [diff] [blame^] | 8 | # Copyright (c) 2006 - 2010, Intel Corporation
|
eric_tian | 804405e | 2008-06-30 05:08:49 +0000 | [diff] [blame] | 9 | #
|
| 10 | # All rights reserved. This program and the accompanying materials
|
| 11 | # 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 | #
|
lgao4 | 7b202cb | 2010-02-23 23:58:38 +0000 | [diff] [blame^] | 18 | ##
|
eric_tian | 804405e | 2008-06-30 05:08:49 +0000 | [diff] [blame] | 19 |
|
| 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
|
| 26 | EDK_RELEASE_VERSION = 0x00020000
|
| 27 | EFI_SPECIFICATION_VERSION = 0x00020000
|
| 28 |
|
| 29 | ENTRY_POINT = InitializeUnixUga
|
| 30 |
|
| 31 | #
|
| 32 | # The following information is for reference only and not required by the build tools.
|
| 33 | #
|
| 34 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
| 35 | #
|
| 36 | # DRIVER_BINDING = gUnixUgaDriverBinding
|
| 37 | # COMPONENT_NAME = gUnixUgaComponentName
|
| 38 | #
|
| 39 |
|
lgao4 | 7b202cb | 2010-02-23 23:58:38 +0000 | [diff] [blame^] | 40 | [Sources]
|
eric_tian | 804405e | 2008-06-30 05:08:49 +0000 | [diff] [blame] | 41 | ComponentName.c
|
| 42 | UnixUgaScreen.c
|
| 43 | UnixUgaDriver.c
|
| 44 | UnixUgaInput.c
|
| 45 | UnixUga.h
|
| 46 | EntryPoint.c
|
| 47 |
|
| 48 |
|
| 49 | [Packages]
|
| 50 | MdePkg/MdePkg.dec
|
| 51 | UnixPkg/UnixPkg.dec
|
| 52 |
|
| 53 |
|
| 54 | [LibraryClasses]
|
| 55 | UefiBootServicesTableLib
|
| 56 | MemoryAllocationLib
|
| 57 | BaseMemoryLib
|
| 58 | UefiLib
|
| 59 | UefiDriverEntryPoint
|
| 60 | BaseLib
|
| 61 | DebugLib
|
| 62 |
|
| 63 |
|
| 64 | [Guids]
|
| 65 | gEfiEventExitBootServicesGuid # SOMETIMES_CONSUMED Create Event: EVENT_GROUP_GUID
|
| 66 | gEfiUnixUgaGuid # ALWAYS_CONSUMED
|
| 67 |
|
| 68 |
|
| 69 | [Protocols]
|
| 70 | gEfiSimpleTextInProtocolGuid # PROTOCOL BY_START
|
| 71 | gEfiUnixUgaIoProtocolGuid # PROTOCOL BY_START
|
| 72 | gEfiUgaDrawProtocolGuid # PROTOCOL BY_START
|
| 73 | gEfiUnixIoProtocolGuid # PROTOCOL TO_START
|
| 74 |
|