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