]>
Commit | Line | Data |
---|---|---|
2ff79f2e | 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 - 2010, Intel Corporation. All rights reserved.<BR>\r | |
1b7edf0f | 9 | # Portions copyright (c) 2010, Apple, Inc. All rights reserved.<BR>\r |
2ff79f2e | 10 | #\r |
11 | # This program and the accompanying materials\r | |
12 | # are licensed and made available under the terms and conditions of the BSD License\r | |
13 | # which accompanies this distribution. The full text of the license may be found at\r | |
14 | # http://opensource.org/licenses/bsd-license.php\r | |
15 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
16 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
17 | #\r | |
18 | #\r | |
19 | ##\r | |
20 | \r | |
21 | [Defines]\r | |
22 | INF_VERSION = 0x00010005\r | |
23 | BASE_NAME = UnixUga\r | |
24 | FILE_GUID = f33cad86-8985-11db-8040-0040d02b1835\r | |
25 | MODULE_TYPE = UEFI_DRIVER\r | |
26 | VERSION_STRING = 1.0\r | |
27 | \r | |
28 | ENTRY_POINT = InitializeUnixGop\r | |
29 | \r | |
30 | #\r | |
31 | # The following information is for reference only and not required by the build tools.\r | |
32 | #\r | |
33 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC\r | |
34 | #\r | |
35 | # DRIVER_BINDING = gUnixUgaDriverBinding \r | |
36 | # COMPONENT_NAME = gUnixUgaComponentName \r | |
37 | #\r | |
38 | \r | |
39 | [Sources]\r | |
40 | ComponentName.c\r | |
41 | UnixGopScreen.c\r | |
42 | UnixGopDriver.c\r | |
43 | UnixGopInput.c\r | |
44 | UnixGop.h\r | |
45 | \r | |
46 | \r | |
47 | [Packages]\r | |
48 | MdePkg/MdePkg.dec\r | |
49 | UnixPkg/UnixPkg.dec\r | |
50 | \r | |
51 | \r | |
52 | [LibraryClasses]\r | |
53 | UefiBootServicesTableLib\r | |
54 | MemoryAllocationLib\r | |
55 | BaseMemoryLib\r | |
56 | UefiLib\r | |
57 | UefiDriverEntryPoint\r | |
58 | BaseLib\r | |
59 | DebugLib\r | |
60 | \r | |
61 | \r | |
62 | [Guids]\r | |
63 | gEfiEventExitBootServicesGuid # SOMETIMES_CONSUMED Create Event: EVENT_GROUP_GUID\r | |
64 | gEfiUnixGopGuid # ALWAYS_CONSUMED\r | |
65 | \r | |
66 | \r | |
67 | [Protocols]\r | |
68 | gEfiGraphicsOutputProtocolGuid\r | |
69 | gEfiSimpleTextInProtocolGuid # PROTOCOL BY_START\r | |
70 | gEfiSimpleTextInputExProtocolGuid # PROTOCOL BY_START\r | |
71 | gEfiSimplePointerProtocolGuid # PROTOCOL BY_START\r | |
72 | gEfiUnixIoProtocolGuid # PROTOCOL TO_START\r | |
73 | \r |