]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
MdeModulePkg: Fix TerminalDxe FIFO Data Loss
[mirror_edk2.git] / MdeModulePkg / Universal / Console / TerminalDxe / TerminalDxe.inf
... / ...
CommitLineData
1## @file\r
2#\r
3# Component description file for Terminal module.\r
4#\r
5# This driver installs Simple Text In/Out protocol for terminal devices (serial devices or hotplug devices).\r
6#\r
7# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r
8# This program and the accompanying materials\r
9# are licensed and made available under the terms and conditions of the BSD License\r
10# which accompanies this distribution. The full text of the license may be found at\r
11# http://opensource.org/licenses/bsd-license.php\r
12# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14#\r
15#\r
16##\r
17\r
18[Defines]\r
19 INF_VERSION = 0x00010005\r
20 BASE_NAME = TerminalDxe\r
21 FILE_GUID = 9E863906-A40F-4875-977F-5B93FF237FC6\r
22 MODULE_TYPE = UEFI_DRIVER\r
23 VERSION_STRING = 1.0\r
24 ENTRY_POINT = InitializeTerminal\r
25\r
26#\r
27# The following information is for reference only and not required by the build tools.\r
28#\r
29# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
30#\r
31# DRIVER_BINDING = gTerminalDriverBinding\r
32# COMPONENT_NAME = gTerminalComponentName\r
33# COMPONENT_NAME2 = gTerminalComponentName2\r
34#\r
35\r
36[Sources]\r
37 ComponentName.c\r
38 Vtutf8.c\r
39 Ansi.c\r
40 TerminalConOut.c\r
41 TerminalConIn.c\r
42 Terminal.c\r
43 Terminal.h\r
44\r
45[Packages]\r
46 MdePkg/MdePkg.dec\r
47 MdeModulePkg/MdeModulePkg.dec\r
48\r
49[LibraryClasses]\r
50 DevicePathLib\r
51 UefiRuntimeServicesTableLib\r
52 UefiBootServicesTableLib\r
53 MemoryAllocationLib\r
54 BaseMemoryLib\r
55 ReportStatusCodeLib\r
56 UefiLib\r
57 UefiDriverEntryPoint\r
58 DebugLib\r
59 PcdLib\r
60 BaseLib\r
61\r
62[Guids]\r
63 gEfiGlobalVariableGuid ## SOMETIMES_CONSUMES ## Variable:L"ErrOutDev"\r
64 gEfiVTUTF8Guid ## SOMETIMES_CONSUMES ## GUID\r
65 gEfiVT100Guid ## SOMETIMES_CONSUMES ## GUID\r
66 gEfiVT100PlusGuid ## SOMETIMES_CONSUMES ## GUID\r
67 gEfiPcAnsiGuid ## SOMETIMES_CONSUMES ## GUID\r
68\r
69[Protocols]\r
70 gEfiSerialIoProtocolGuid ## TO_START\r
71 gEfiDevicePathProtocolGuid ## TO_START\r
72 gEfiSimpleTextInProtocolGuid ## BY_START\r
73 gEfiSimpleTextInputExProtocolGuid ## BY_START\r
74 gEfiSimpleTextOutProtocolGuid ## BY_START\r
75\r
76[Pcd]\r
77 gEfiMdePkgTokenSpaceGuid.PcdDefaultTerminalType\r
78 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn\r
79 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow\r
80\r
81# [Event]\r
82# ##\r
83# # Relative timer event set by UnicodeToEfiKey(), used to one 2 seconds input timeout.\r
84# #\r
85# EVENT_TYPE_RELATIVE_TIMER ## PRODUCES\r
86#\r
87#\r
88\r