]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
MdeModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdeModulePkg / Universal / Console / ConPlatformDxe / ConPlatformDxe.inf
CommitLineData
6bfbb5f0 1## @file\r
6036e94d
SZ
2# Platform console driver manages console devices.\r
3#\r
7772b176 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
95276127 6#\r
d1102dba 7# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
95276127 8#\r
9d510e61 9# SPDX-License-Identifier: BSD-2-Clause-Patent\r
95276127 10#\r
11#\r
6bfbb5f0 12##\r
95276127 13\r
95276127 14[Defines]\r
15 INF_VERSION = 0x00010005\r
51d5c5d7 16 BASE_NAME = ConPlatformDxe\r
6036e94d 17 MODULE_UNI_FILE = ConPlatformDxe.uni\r
95276127 18 FILE_GUID = 51ccf399-4fdf-4e55-a45b-e123f84d456a\r
19 MODULE_TYPE = UEFI_DRIVER\r
20 VERSION_STRING = 1.0\r
95276127 21 ENTRY_POINT = InitializeConPlatform\r
22\r
23#\r
24# The following information is for reference only and not required by the build tools.\r
25#\r
de005223 26# VALID_ARCHITECTURES = IA32 X64 EBC\r
95276127 27#\r
d354ab7f 28# DRIVER_BINDING = gConPlatformTextInDriverBinding\r
29# COMPONENT_NAME = gConPlatformComponentName\r
30# COMPONENT_NAME2 = gConPlatformComponentName2\r
31# DRIVER_BINDING = gConPlatformTextOutDriverBinding\r
32# COMPONENT_NAME = gConPlatformComponentName\r
33# COMPONENT_NAME2 = gConPlatformComponentName2\r
95276127 34#\r
35\r
6bfbb5f0 36[Sources]\r
95276127 37 ComponentName.c\r
95276127 38 ConPlatform.h\r
39 ConPlatform.c\r
95276127 40\r
41[Packages]\r
42 MdePkg/MdePkg.dec\r
623ad724 43 MdeModulePkg/MdeModulePkg.dec\r
95276127 44\r
95276127 45[LibraryClasses]\r
46 MemoryAllocationLib\r
47 DevicePathLib\r
48 UefiRuntimeServicesTableLib\r
49 UefiBootServicesTableLib\r
50 BaseMemoryLib\r
51 UefiLib\r
52 UefiDriverEntryPoint\r
53 DebugLib\r
56dee83a 54 UefiBootManagerLib\r
95276127 55\r
95276127 56[Guids]\r
6036e94d 57 #\r
7772b176 58 # This is the VendorGuid of all architecturally defined variables in UEFI spec.\r
59 #\r
6036e94d
SZ
60 ## SOMETIMES_CONSUMES ## Variable:L"ConIn"\r
61 ## SOMETIMES_CONSUMES ## Variable:L"ConOut"\r
62 ## SOMETIMES_CONSUMES ## Variable:L"ErrOut"\r
63 ## SOMETIMES_PRODUCES ## Variable:L"ConInDev"\r
64 ## SOMETIMES_PRODUCES ## Variable:L"ConOutDev"\r
65 ## SOMETIMES_PRODUCES ## Variable:L"ErrOutDev"\r
66 gEfiGlobalVariableGuid\r
67 #\r
7772b176 68 # This GUID is used to specify the device is the standard error device.\r
69 # If the device is a standard error device, this GUID as the protocol GUID will be installed\r
70 # onto this device handle.\r
71 #\r
6036e94d
SZ
72 gEfiStandardErrorDeviceGuid ## SOMETIMES_PRODUCES ## UNDEFINED # protocol GUID installed on device handle\r
73 #\r
7772b176 74 # This GUID is used to specify the device is the console output device.\r
75 # If the device is a console output device, this GUID as the protocol GUID will be installed\r
76 # onto this device handle.\r
77 #\r
6036e94d
SZ
78 gEfiConsoleOutDeviceGuid ## SOMETIMES_PRODUCES ## UNDEFINED # protocol GUID installed on device handle\r
79 #\r
7772b176 80 # This GUID is used to specify the device is the console input device.\r
81 # If the device is a console input device, this GUID as the protocol GUID will be installed\r
82 # onto this device handle.\r
83 #\r
6036e94d 84 gEfiConsoleInDeviceGuid ## SOMETIMES_PRODUCES ## UNDEFINED # protocol GUID installed on device handle\r
8d4cd915 85\r
86[Protocols]\r
87 gEfiDevicePathProtocolGuid ## TO_START\r
88 gEfiSimpleTextInProtocolGuid ## TO_START\r
89 gEfiSimpleTextOutProtocolGuid ## TO_START\r
6036e94d
SZ
90 gEfiPciIoProtocolGuid ## SOMETIMES_CONSUMES\r
91 gEfiGraphicsOutputProtocolGuid ## SOMETIMES_CONSUMES\r
5c9ac43f 92 gEfiUsbIoProtocolGuid ## SOMETIMES_CONSUMES\r
6036e94d
SZ
93\r
94[UserExtensions.TianoCore."ExtraFiles"]\r
d1102dba 95 ConPlatformDxeExtra.uni\r