2007-07-05 09:05:28 +02:00
|
|
|
#/** @file
|
2008-12-22 03:29:21 +01:00
|
|
|
# This driver provides multi console supports.
|
2007-07-05 09:05:28 +02:00
|
|
|
#
|
2008-12-22 03:29:21 +01:00
|
|
|
# This driver acts as a virtual console, takes over the console I/O control from selected
|
|
|
|
# standard console devices, and transmits console I/O to related console device drivers.
|
|
|
|
# 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-18 16:35:45 +02:00
|
|
|
BASE_NAME = ConSplitterDxe
|
2007-07-05 09:05:28 +02:00
|
|
|
FILE_GUID = 408edcec-cf6d-477c-a5a8-b4844e3de281
|
2008-08-18 11:18:44 +02:00
|
|
|
MODULE_TYPE = UEFI_DRIVER
|
2008-12-03 10:08:05 +01:00
|
|
|
VERSION_STRING = 1.0
|
2008-07-10 05:25:37 +02:00
|
|
|
ENTRY_POINT = ConSplitterDriverEntry
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
2007-10-16 07:30:18 +02:00
|
|
|
# DRIVER_BINDING = gConSplitterConInDriverBinding
|
|
|
|
# COMPONENT_NAME = gConSplitterConInComponentName
|
2008-12-04 08:12:25 +01:00
|
|
|
# COMPONENT_NAME2 = gConSplitterConInComponentName2
|
2007-10-16 07:30:18 +02:00
|
|
|
# DRIVER_BINDING = gConSplitterSimplePointerDriverBinding
|
|
|
|
# COMPONENT_NAME = gConSplitterSimplePointerComponentName
|
2008-12-04 08:12:25 +01:00
|
|
|
# COMPONENT_NAME2 = gConSplitterSimplePointerComponentName2
|
2007-10-16 07:30:18 +02:00
|
|
|
# DRIVER_BINDING = gConSplitterConOutDriverBinding
|
|
|
|
# COMPONENT_NAME = gConSplitterConOutComponentName
|
2008-12-04 08:12:25 +01:00
|
|
|
# COMPONENT_NAME2 = gConSplitterConOutComponentName2
|
2007-10-16 07:30:18 +02:00
|
|
|
# DRIVER_BINDING = gConSplitterStdErrDriverBinding
|
|
|
|
# COMPONENT_NAME = gConSplitterStdErrComponentName
|
2008-12-04 08:12:25 +01:00
|
|
|
# COMPONENT_NAME2 = gConSplitterStdErrComponentName2
|
2007-07-05 09:05:28 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
[Sources.common]
|
|
|
|
ConSplitterGraphics.c
|
|
|
|
ComponentName.c
|
|
|
|
ConSplitter.h
|
|
|
|
ConSplitter.c
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
2007-08-29 10:52:49 +02:00
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
UefiBootServicesTableLib
|
2008-03-06 11:53:58 +01:00
|
|
|
UefiRuntimeServicesTableLib
|
2007-07-05 09:05:28 +02:00
|
|
|
MemoryAllocationLib
|
|
|
|
BaseMemoryLib
|
|
|
|
BaseLib
|
|
|
|
UefiLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
DebugLib
|
2007-10-16 07:30:18 +02:00
|
|
|
PcdLib
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
[Guids]
|
|
|
|
gEfiConsoleInDeviceGuid # ALWAYS_CONSUMED
|
|
|
|
gEfiStandardErrorDeviceGuid # ALWAYS_CONSUMED
|
|
|
|
gEfiConsoleOutDeviceGuid # ALWAYS_CONSUMED
|
|
|
|
gEfiPrimaryConsoleOutDeviceGuid # ALWAYS_PRODUCED
|
|
|
|
gEfiPrimaryConsoleInDeviceGuid # ALWAYS_PRODUCED
|
|
|
|
gEfiPrimaryStandardErrorDeviceGuid # ALWAYS_PRODUCED
|
2007-10-19 04:35:29 +02:00
|
|
|
gSimpleTextInExNotifyGuid # ALWAYS_PRODUCED
|
2008-03-06 11:53:58 +01:00
|
|
|
gEfiGenericPlatformVariableGuid # ALWAYS_CONSUMED
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
[Protocols]
|
|
|
|
gEfiConsoleControlProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
|
|
|
gEfiSimplePointerProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
|
|
|
gEfiSimpleTextInProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
2007-10-19 04:35:29 +02:00
|
|
|
gEfiSimpleTextInputExProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
2007-07-05 09:05:28 +02:00
|
|
|
gEfiSimpleTextOutProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
|
|
|
gEfiGraphicsOutputProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
|
|
|
gEfiUgaDrawProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
2008-08-18 11:18:44 +02:00
|
|
|
gEfiAbsolutePointerProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
2007-07-05 09:05:28 +02:00
|
|
|
|
2007-10-16 07:30:18 +02:00
|
|
|
[FeaturePcd.common]
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport
|
2008-11-20 04:08:28 +01:00
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport
|