]> git.proxmox.com Git - mirror_edk2.git/blob - UnixPkg/UnixUgaDxe/UnixUga.inf
Update for NetworkPkg.
[mirror_edk2.git] / UnixPkg / UnixUgaDxe / UnixUga.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 #
10 # 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 #
18 ##
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
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
38 [Sources]
39 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 gEfiSimplePointerProtocolGuid # PROTOCOL BY_START
70 gEfiUnixUgaIoProtocolGuid # PROTOCOL BY_START
71 gEfiUgaDrawProtocolGuid # PROTOCOL BY_START
72 gEfiUnixIoProtocolGuid # PROTOCOL TO_START
73