]> git.proxmox.com Git - mirror_edk2.git/blame - UnixPkg/UnixUgaDxe/UnixUga.inf
sync comments, fix function header, rename variable name to follow coding style.
[mirror_edk2.git] / UnixPkg / UnixUgaDxe / UnixUga.inf
CommitLineData
804405e7 1#/** @file\r
2# Uga driver\r
3#\r
4# UGA is short hand for Universal Graphics Abstraction protocol.\r
5# This file is a verision of UgaIo the uses UnixThunk system calls as an IO\r
6# abstraction. For a PCI device UnixIo would be replaced with\r
7# a PCI IO abstraction that abstracted a specific PCI device.\r
8# Copyright (c) 2006, Intel Corporation\r
9#\r
10# All rights reserved. This program and the accompanying materials\r
11# are licensed and made available under the terms and conditions of the BSD License\r
12# which accompanies this distribution. The full text of the license may be found at\r
13# http://opensource.org/licenses/bsd-license.php\r
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
16#\r
17#\r
18#**/\r
19\r
20[Defines]\r
21 INF_VERSION = 0x00010005\r
22 BASE_NAME = UnixUga\r
23 FILE_GUID = f33cad86-8985-11db-8040-0040d02b1835\r
24 MODULE_TYPE = UEFI_DRIVER\r
25 VERSION_STRING = 1.0\r
26 EDK_RELEASE_VERSION = 0x00020000\r
27 EFI_SPECIFICATION_VERSION = 0x00020000\r
28\r
29 ENTRY_POINT = InitializeUnixUga\r
30\r
31#\r
32# The following information is for reference only and not required by the build tools.\r
33#\r
34# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
35#\r
36# DRIVER_BINDING = gUnixUgaDriverBinding \r
37# COMPONENT_NAME = gUnixUgaComponentName \r
38#\r
39\r
40[Sources.common]\r
41 ComponentName.c\r
42 UnixUgaScreen.c\r
43 UnixUgaDriver.c\r
44 UnixUgaInput.c\r
45 UnixUga.h\r
46 EntryPoint.c\r
47\r
48\r
49[Packages]\r
50 MdePkg/MdePkg.dec\r
51 UnixPkg/UnixPkg.dec\r
52\r
53\r
54[LibraryClasses]\r
55 UefiBootServicesTableLib\r
56 MemoryAllocationLib\r
57 BaseMemoryLib\r
58 UefiLib\r
59 UefiDriverEntryPoint\r
60 BaseLib\r
61 DebugLib\r
62\r
63\r
64[Guids]\r
65 gEfiEventExitBootServicesGuid # SOMETIMES_CONSUMED Create Event: EVENT_GROUP_GUID\r
66 gEfiUnixUgaGuid # ALWAYS_CONSUMED\r
67\r
68\r
69[Protocols]\r
70 gEfiSimpleTextInProtocolGuid # PROTOCOL BY_START\r
71 gEfiUnixUgaIoProtocolGuid # PROTOCOL BY_START\r
72 gEfiUgaDrawProtocolGuid # PROTOCOL BY_START\r
73 gEfiUnixIoProtocolGuid # PROTOCOL TO_START\r
74\r