]> git.proxmox.com Git - mirror_edk2.git/blob - UnixPkg/UnixGopDxe/UnixGop.inf
e11a709e7c91c03b0dc58c7647160892e268ac03
[mirror_edk2.git] / UnixPkg / UnixGopDxe / UnixGop.inf
1 ## @file
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.
8 # Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
9 # Portions copyright (c) 2010, Apple, Inc. All rights reserved.<BR>
10 #
11 # This program and the accompanying materials
12 # are licensed and made available under the terms and conditions of the BSD License
13 # which accompanies this distribution. The full text of the license may be found at
14 # http://opensource.org/licenses/bsd-license.php
15 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
17 #
18 #
19 ##
20
21 [Defines]
22 INF_VERSION = 0x00010005
23 BASE_NAME = UnixUga
24 FILE_GUID = f33cad86-8985-11db-8040-0040d02b1835
25 MODULE_TYPE = UEFI_DRIVER
26 VERSION_STRING = 1.0
27
28 ENTRY_POINT = InitializeUnixGop
29
30 #
31 # The following information is for reference only and not required by the build tools.
32 #
33 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
34 #
35 # DRIVER_BINDING = gUnixUgaDriverBinding
36 # COMPONENT_NAME = gUnixUgaComponentName
37 #
38
39 [Sources]
40 ComponentName.c
41 UnixGopScreen.c
42 UnixGopDriver.c
43 UnixGopInput.c
44 UnixGop.h
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 gEfiUnixGopGuid # ALWAYS_CONSUMED
65
66
67 [Protocols]
68 gEfiGraphicsOutputProtocolGuid
69 gEfiSimpleTextInProtocolGuid # PROTOCOL BY_START
70 gEfiSimpleTextInputExProtocolGuid # PROTOCOL BY_START
71 gEfiSimplePointerProtocolGuid # PROTOCOL BY_START
72 gEfiUnixIoProtocolGuid # PROTOCOL TO_START
73