]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Console/TerminalDxe/Terminal.inf
358db9560616a90882ba4de05013e7a53b0cc640
[mirror_edk2.git] / MdeModulePkg / Universal / Console / TerminalDxe / Terminal.inf
1 #/** @file
2 # Component description file for Terminal module.
3 #
4 # This driver installs Simple Text In/Out protocol for terminal devices (serial devices or hotplug devices).
5 # Copyright (c) 2006 - 2007, Intel Corporation
6 #
7 # All rights reserved. This program and the accompanying materials
8 # are licensed and made available under the terms and conditions of the BSD License
9 # which accompanies this distribution. The full text of the license may be found at
10 # http://opensource.org/licenses/bsd-license.php
11 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 #
14 #
15 #**/
16
17 ################################################################################
18 #
19 # Defines Section - statements that will be processed to create a Makefile.
20 #
21 ################################################################################
22 [Defines]
23 INF_VERSION = 0x00010005
24 BASE_NAME = Terminal
25 FILE_GUID = 9E863906-A40F-4875-977F-5B93FF237FC6
26 MODULE_TYPE = DXE_DRIVER
27 VERSION_STRING = 1.0
28 EDK_RELEASE_VERSION = 0x00020000
29 EFI_SPECIFICATION_VERSION = 0x00020000
30
31 ENTRY_POINT = InitializeTerminal
32
33 #
34 # The following information is for reference only and not required by the build tools.
35 #
36 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
37 #
38 # DRIVER_BINDING = gTerminalDriverBinding
39 # COMPONENT_NAME = gTerminalComponentName
40 #
41
42 ################################################################################
43 #
44 # Sources Section - list of files that are required for the build to succeed.
45 #
46 ################################################################################
47
48 [Sources.common]
49 ComponentName.c
50 vtutf8.c
51 ansi.c
52 TerminalConOut.c
53 TerminalConIn.c
54 Terminal.c
55 Terminal.h
56 CommonHeader.h
57 EntryPoint.c
58
59
60 ################################################################################
61 #
62 # Package Dependency Section - list of Package files that are required for
63 # this module.
64 #
65 ################################################################################
66
67 [Packages]
68 MdePkg/MdePkg.dec
69 IntelFrameworkPkg/IntelFrameworkPkg.dec
70
71 ################################################################################
72 #
73 # Library Class Section - list of Library Classes that are required for
74 # this module.
75 #
76 ################################################################################
77
78 [LibraryClasses]
79 DevicePathLib
80 UefiRuntimeServicesTableLib
81 UefiBootServicesTableLib
82 MemoryAllocationLib
83 BaseMemoryLib
84 ReportStatusCodeLib
85 UefiLib
86 UefiDriverEntryPoint
87 DebugLib
88
89
90 ################################################################################
91 #
92 # Guid C Name Section - list of Guids that this module uses or produces.
93 #
94 ################################################################################
95
96 [Guids]
97 gEfiGlobalVariableGuid # SOMETIMES_CONSUMED L"ErrOutDev"
98 gEfiVTUTF8Guid # SOMETIMES_CONSUMED
99 gEfiVT100Guid # SOMETIMES_CONSUMED
100 gEfiVT100PlusGuid # SOMETIMES_CONSUMED
101 gEfiPcAnsiGuid # SOMETIMES_CONSUMED
102
103
104 ################################################################################
105 #
106 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
107 # that this module uses or produces.
108 #
109 ################################################################################
110
111 [Protocols]
112 gEfiHotPlugDeviceGuid # PROTOCOL SOMETIMES_CONSUMED
113 gEfiSerialIoProtocolGuid # PROTOCOL TO_START
114 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
115 gEfiSimpleTextInProtocolGuid # PROTOCOL BY_START
116 gEfiSimpleTextOutProtocolGuid # PROTOCOL BY_START
117