2007-07-05 09:05:28 +02:00
|
|
|
#/** @file
|
2008-12-17 10:34:06 +01:00
|
|
|
#
|
|
|
|
# Component description file for Terminal module.
|
2007-07-05 09:05:28 +02:00
|
|
|
#
|
2008-12-17 10:34:06 +01:00
|
|
|
# This driver installs Simple Text In/Out protocol for terminal devices (serial devices or hotplug devices).
|
|
|
|
#
|
|
|
|
# Copyright (c) 2006 - 2008, Intel Corporation
|
2007-07-05 09:05:28 +02:00
|
|
|
# All rights reserved. This program and the accompanying materials
|
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#**/
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
2007-07-17 04:23:15 +02:00
|
|
|
BASE_NAME = TerminalDxe
|
2007-07-05 09:05:28 +02:00
|
|
|
FILE_GUID = 9E863906-A40F-4875-977F-5B93FF237FC6
|
2008-08-18 11:18:44 +02:00
|
|
|
MODULE_TYPE = UEFI_DRIVER
|
2007-07-05 09:05:28 +02:00
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = InitializeTerminal
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
2008-12-04 08:12:25 +01:00
|
|
|
# DRIVER_BINDING = gTerminalDriverBinding
|
|
|
|
# COMPONENT_NAME = gTerminalComponentName
|
|
|
|
# COMPONENT_NAME2 = gTerminalComponentName2
|
2007-07-05 09:05:28 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
[Sources.common]
|
|
|
|
ComponentName.c
|
2008-06-30 11:04:31 +02:00
|
|
|
Vtutf8.c
|
|
|
|
Ansi.c
|
2007-07-05 09:05:28 +02:00
|
|
|
TerminalConOut.c
|
|
|
|
TerminalConIn.c
|
|
|
|
Terminal.c
|
|
|
|
Terminal.h
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
2007-08-29 10:52:49 +02:00
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
DevicePathLib
|
|
|
|
UefiRuntimeServicesTableLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
BaseMemoryLib
|
|
|
|
ReportStatusCodeLib
|
|
|
|
UefiLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
DebugLib
|
2007-07-10 01:39:54 +02:00
|
|
|
PcdLib
|
2007-10-19 04:35:29 +02:00
|
|
|
BaseLib
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
[Guids]
|
|
|
|
gEfiGlobalVariableGuid # SOMETIMES_CONSUMED L"ErrOutDev"
|
|
|
|
gEfiVTUTF8Guid # SOMETIMES_CONSUMED
|
|
|
|
gEfiVT100Guid # SOMETIMES_CONSUMED
|
|
|
|
gEfiVT100PlusGuid # SOMETIMES_CONSUMED
|
|
|
|
gEfiPcAnsiGuid # SOMETIMES_CONSUMED
|
2007-10-19 04:35:29 +02:00
|
|
|
gSimpleTextInExNotifyGuid # SOMETIMES_CONSUMED
|
2007-07-05 09:05:28 +02:00
|
|
|
gEfiHotPlugDeviceGuid # PROTOCOL SOMETIMES_CONSUMED
|
2008-08-20 06:29:05 +02:00
|
|
|
|
|
|
|
[Protocols]
|
2007-07-05 09:05:28 +02:00
|
|
|
gEfiSerialIoProtocolGuid # PROTOCOL TO_START
|
|
|
|
gEfiDevicePathProtocolGuid # PROTOCOL TO_START
|
|
|
|
gEfiSimpleTextInProtocolGuid # PROTOCOL BY_START
|
2007-10-19 04:35:29 +02:00
|
|
|
gEfiSimpleTextInputExProtocolGuid # PROTOCOL BY_START
|
2007-07-05 09:05:28 +02:00
|
|
|
gEfiSimpleTextOutProtocolGuid # PROTOCOL BY_START
|
|
|
|
|
2007-08-30 11:11:54 +02:00
|
|
|
[Pcd]
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueRemoteConsoleError
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueRemoteConsoleReset
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueRemoteConsoleInputError
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueRemoteConsoleOutputError
|
2008-12-05 23:09:14 +01:00
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdDefaultTerminalType
|
2007-08-17 00:15:08 +02:00
|
|
|
|