]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
MdeModulePkg: Removing ipf which is no longer supported from edk2.
[mirror_edk2.git] / MdeModulePkg / Universal / Console / ConPlatformDxe / ConPlatformDxe.inf
... / ...
CommitLineData
1## @file\r
2# Platform console driver manages console devices.\r
3#\r
4# Console Platfrom DXE Driver that specifies whether device can be used as console\r
5# input/output device or error output device and update global variables accordingly.\r
6#\r
7# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
8#\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 = ConPlatformDxe\r
22 MODULE_UNI_FILE = ConPlatformDxe.uni\r
23 FILE_GUID = 51ccf399-4fdf-4e55-a45b-e123f84d456a\r
24 MODULE_TYPE = UEFI_DRIVER\r
25 VERSION_STRING = 1.0\r
26 ENTRY_POINT = InitializeConPlatform\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 = gConPlatformTextInDriverBinding\r
34# COMPONENT_NAME = gConPlatformComponentName\r
35# COMPONENT_NAME2 = gConPlatformComponentName2\r
36# DRIVER_BINDING = gConPlatformTextOutDriverBinding\r
37# COMPONENT_NAME = gConPlatformComponentName\r
38# COMPONENT_NAME2 = gConPlatformComponentName2\r
39#\r
40\r
41[Sources]\r
42 ComponentName.c\r
43 ConPlatform.h\r
44 ConPlatform.c\r
45\r
46[Packages]\r
47 MdePkg/MdePkg.dec\r
48 MdeModulePkg/MdeModulePkg.dec\r
49\r
50[LibraryClasses]\r
51 MemoryAllocationLib\r
52 DevicePathLib\r
53 UefiRuntimeServicesTableLib\r
54 UefiBootServicesTableLib\r
55 BaseMemoryLib\r
56 UefiLib\r
57 UefiDriverEntryPoint\r
58 DebugLib\r
59 UefiBootManagerLib\r
60\r
61[Guids]\r
62 #\r
63 # This is the VendorGuid of all architecturally defined variables in UEFI spec.\r
64 #\r
65 ## SOMETIMES_CONSUMES ## Variable:L"ConIn"\r
66 ## SOMETIMES_CONSUMES ## Variable:L"ConOut"\r
67 ## SOMETIMES_CONSUMES ## Variable:L"ErrOut"\r
68 ## SOMETIMES_PRODUCES ## Variable:L"ConInDev"\r
69 ## SOMETIMES_PRODUCES ## Variable:L"ConOutDev"\r
70 ## SOMETIMES_PRODUCES ## Variable:L"ErrOutDev"\r
71 gEfiGlobalVariableGuid\r
72 #\r
73 # This GUID is used to specify the device is the standard error device.\r
74 # If the device is a standard error device, this GUID as the protocol GUID will be installed\r
75 # onto this device handle.\r
76 #\r
77 gEfiStandardErrorDeviceGuid ## SOMETIMES_PRODUCES ## UNDEFINED # protocol GUID installed on device handle\r
78 #\r
79 # This GUID is used to specify the device is the console output device.\r
80 # If the device is a console output device, this GUID as the protocol GUID will be installed\r
81 # onto this device handle.\r
82 #\r
83 gEfiConsoleOutDeviceGuid ## SOMETIMES_PRODUCES ## UNDEFINED # protocol GUID installed on device handle\r
84 #\r
85 # This GUID is used to specify the device is the console input device.\r
86 # If the device is a console input device, this GUID as the protocol GUID will be installed\r
87 # onto this device handle.\r
88 #\r
89 gEfiConsoleInDeviceGuid ## SOMETIMES_PRODUCES ## UNDEFINED # protocol GUID installed on device handle\r
90\r
91[Protocols]\r
92 gEfiDevicePathProtocolGuid ## TO_START\r
93 gEfiSimpleTextInProtocolGuid ## TO_START\r
94 gEfiSimpleTextOutProtocolGuid ## TO_START\r
95 gEfiPciIoProtocolGuid ## SOMETIMES_CONSUMES\r
96 gEfiGraphicsOutputProtocolGuid ## SOMETIMES_CONSUMES\r
97\r
98[UserExtensions.TianoCore."ExtraFiles"]\r
99 ConPlatformDxeExtra.uni\r