]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
MdeModulePkg: Removing ipf which is no longer supported from edk2.
[mirror_edk2.git] / MdeModulePkg / Universal / Console / TerminalDxe / TerminalDxe.inf
... / ...
CommitLineData
1## @file\r
2# Terminal module installs Simple Text Input(ex)/Out protocols for serial devices.\r
3#\r
4# This module will install Simple Text Input (Ex) protocol and Simple Test Output\r
5# protocols based on Serial I/O protocol for serial devices including hotplug serial\r
6# devices.\r
7#\r
8# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
9# This program and the accompanying materials\r
10# are licensed and made available under the terms and conditions of the BSD License\r
11# which accompanies this distribution. The full text of the license may be found at\r
12# http://opensource.org/licenses/bsd-license.php\r
13# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15#\r
16#\r
17##\r
18\r
19[Defines]\r
20 INF_VERSION = 0x00010005\r
21 BASE_NAME = TerminalDxe\r
22 MODULE_UNI_FILE = TerminalDxe.uni\r
23 FILE_GUID = 9E863906-A40F-4875-977F-5B93FF237FC6\r
24 MODULE_TYPE = UEFI_DRIVER\r
25 VERSION_STRING = 1.0\r
26 ENTRY_POINT = InitializeTerminal\r
27\r
28#\r
29# The following information is for reference only and not required by the build tools.\r
30#\r
31# VALID_ARCHITECTURES = IA32 X64 EBC\r
32#\r
33# DRIVER_BINDING = gTerminalDriverBinding\r
34# COMPONENT_NAME = gTerminalComponentName\r
35# COMPONENT_NAME2 = gTerminalComponentName2\r
36#\r
37\r
38[Sources]\r
39 ComponentName.c\r
40 Vtutf8.c\r
41 Ansi.c\r
42 TerminalConOut.c\r
43 TerminalConIn.c\r
44 Terminal.c\r
45 Terminal.h\r
46\r
47[Packages]\r
48 MdePkg/MdePkg.dec\r
49 MdeModulePkg/MdeModulePkg.dec\r
50\r
51[LibraryClasses]\r
52 DevicePathLib\r
53 UefiRuntimeServicesTableLib\r
54 UefiBootServicesTableLib\r
55 MemoryAllocationLib\r
56 BaseMemoryLib\r
57 ReportStatusCodeLib\r
58 UefiLib\r
59 UefiDriverEntryPoint\r
60 DebugLib\r
61 PcdLib\r
62 BaseLib\r
63\r
64[Guids]\r
65 ## SOMETIMES_PRODUCES ## Variable:L"ConInDev"\r
66 ## SOMETIMES_CONSUMES ## Variable:L"ConInDev"\r
67 ## SOMETIMES_PRODUCES ## Variable:L"ConOutDev"\r
68 ## SOMETIMES_CONSUMES ## Variable:L"ConOutDev"\r
69 ## SOMETIMES_PRODUCES ## Variable:L"ErrOutDev"\r
70 ## SOMETIMES_CONSUMES ## Variable:L"ErrOutDev"\r
71 gEfiGlobalVariableGuid\r
72 gEfiVTUTF8Guid ## SOMETIMES_CONSUMES ## GUID # used with a Vendor-Defined Messaging Device Path\r
73 gEfiVT100Guid ## SOMETIMES_CONSUMES ## GUID # used with a Vendor-Defined Messaging Device Path\r
74 gEfiVT100PlusGuid ## SOMETIMES_CONSUMES ## GUID # used with a Vendor-Defined Messaging Device Path\r
75 gEfiPcAnsiGuid ## SOMETIMES_CONSUMES ## GUID # used with a Vendor-Defined Messaging Device Path\r
76 gEfiTtyTermGuid ## SOMETIMES_CONSUMES ## GUID # used with a Vendor-Defined Messaging Device Path\r
77 gEdkiiStatusCodeDataTypeVariableGuid ## SOMETIMES_CONSUMES ## GUID\r
78\r
79[Protocols]\r
80 gEfiSerialIoProtocolGuid ## TO_START\r
81 ## BY_START\r
82 ## TO_START\r
83 gEfiDevicePathProtocolGuid\r
84 gEfiSimpleTextInProtocolGuid ## BY_START\r
85 gEfiSimpleTextInputExProtocolGuid ## BY_START\r
86 gEfiSimpleTextOutProtocolGuid ## BY_START\r
87\r
88[Pcd]\r
89 gEfiMdePkgTokenSpaceGuid.PcdDefaultTerminalType ## SOMETIMES_CONSUMES\r
90 gEfiMdeModulePkgTokenSpaceGuid.PcdErrorCodeSetVariable ## CONSUMES\r
91\r
92# [Event]\r
93# # Relative timer event set by UnicodeToEfiKey(), used to be one 2 seconds input timeout.\r
94# EVENT_TYPE_RELATIVE_TIMER ## CONSUMES\r
95# # Period timer event to invoke TerminalConInTimerHandler(), period value is KEYBOARD_TIMER_INTERVAL and used to poll the key from serial\r
96# EVENT_TYPE_PERIODIC_TIMER ## CONSUMES\r
97\r
98[UserExtensions.TianoCore."ExtraFiles"]\r
99 TerminalDxeExtra.uni\r