]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
1. retried PrimaryConsoleInDeviceGuid, PrimaryConsoleOutDeviceGuid and PrimaryStandar...
[mirror_edk2.git] / MdeModulePkg / Universal / Console / ConSplitterDxe / ConSplitterDxe.inf
1 #/** @file
2 # This driver provides multi console supports.
3 #
4 # This driver acts as a virtual console, takes over the console I/O control from selected
5 # standard console devices, and transmits console I/O to related console device drivers.
6 # Consplitter could install Graphics Output protocol and/or UGA Draw protocol in system
7 # table according PCD settings(PcdConOutGopSupport, and PcdConOutUgaSupport). It always
8 # consumes Graphics Output protocol which is produced by display device, and consumes UGA Draw
9 # protocol which is produced by display device according to PcdUgaConsumeSupport value.
10 # Note: If only UGA Draw protocol is installed in system table, PcdUgaConsumeSupport
11 # should be set to TRUE.
12 #
13 # Copyright (c) 2006 - 2008, Intel Corporation
14 #
15 # All rights reserved. This program and the accompanying materials
16 # are licensed and made available under the terms and conditions of the BSD License
17 # which accompanies this distribution. The full text of the license may be found at
18 # http://opensource.org/licenses/bsd-license.php
19 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
20 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
21 #
22 #
23 #**/
24
25 [Defines]
26 INF_VERSION = 0x00010005
27 BASE_NAME = ConSplitterDxe
28 FILE_GUID = 408edcec-cf6d-477c-a5a8-b4844e3de281
29 MODULE_TYPE = UEFI_DRIVER
30 VERSION_STRING = 1.0
31 ENTRY_POINT = ConSplitterDriverEntry
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 = gConSplitterConInDriverBinding
39 # COMPONENT_NAME = gConSplitterConInComponentName
40 # COMPONENT_NAME2 = gConSplitterConInComponentName2
41 # DRIVER_BINDING = gConSplitterSimplePointerDriverBinding
42 # COMPONENT_NAME = gConSplitterSimplePointerComponentName
43 # COMPONENT_NAME2 = gConSplitterSimplePointerComponentName2
44 # DRIVER_BINDING = gConSplitterConOutDriverBinding
45 # COMPONENT_NAME = gConSplitterConOutComponentName
46 # COMPONENT_NAME2 = gConSplitterConOutComponentName2
47 # DRIVER_BINDING = gConSplitterStdErrDriverBinding
48 # COMPONENT_NAME = gConSplitterStdErrComponentName
49 # COMPONENT_NAME2 = gConSplitterStdErrComponentName2
50 #
51
52 [Sources.common]
53 ConSplitterGraphics.c
54 ComponentName.c
55 ConSplitter.h
56 ConSplitter.c
57
58 [Packages]
59 MdePkg/MdePkg.dec
60 MdeModulePkg/MdeModulePkg.dec
61
62 [LibraryClasses]
63 UefiBootServicesTableLib
64 MemoryAllocationLib
65 BaseMemoryLib
66 BaseLib
67 UefiLib
68 UefiDriverEntryPoint
69 DebugLib
70 PcdLib
71
72 [Guids]
73 gEfiConsoleInDeviceGuid ## SOMETIMES_CONSUMES
74 gEfiStandardErrorDeviceGuid ## SOMETIMES_CONSUMES
75 gEfiConsoleOutDeviceGuid ## SOMETIMES_CONSUMES
76
77
78 [Protocols]
79 gEfiConsoleControlProtocolGuid ## PRODUCES
80 gEfiSimplePointerProtocolGuid ## BY_START
81 gEfiAbsolutePointerProtocolGuid ## BY_START
82 gEfiSimpleTextInProtocolGuid ## BY_START
83 gEfiSimpleTextInputExProtocolGuid ## BY_START
84 gEfiSimpleTextOutProtocolGuid ## BY_START
85 gEfiGraphicsOutputProtocolGuid ## BY_START
86 gEfiUgaDrawProtocolGuid ## BY_START
87
88
89 [FeaturePcd.common]
90 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport
91 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport
92 gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport
93
94 [Pcd.common]
95 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow
96 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn
97
98 # [Event]
99 # ##
100 # # mConIn.LockEvent, used to record and check key sequence on StdIn. Periodic is 25ms.
101 # #
102 # EVENT_TYPE_PREIODIC_TIMER ## PRODUCES
103 #
104 #