]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[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# SPDX-License-Identifier: BSD-2-Clause-Patent\r
10#\r
11#\r
12##\r
13\r
14[Defines]\r
15 INF_VERSION = 0x00010005\r
16 BASE_NAME = ConPlatformDxe\r
17 MODULE_UNI_FILE = ConPlatformDxe.uni\r
18 FILE_GUID = 51ccf399-4fdf-4e55-a45b-e123f84d456a\r
19 MODULE_TYPE = UEFI_DRIVER\r
20 VERSION_STRING = 1.0\r
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
26# VALID_ARCHITECTURES = IA32 X64 EBC\r
27#\r
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
34#\r
35\r
36[Sources]\r
37 ComponentName.c\r
38 ConPlatform.h\r
39 ConPlatform.c\r
40\r
41[Packages]\r
42 MdePkg/MdePkg.dec\r
43 MdeModulePkg/MdeModulePkg.dec\r
44\r
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
54 UefiBootManagerLib\r
55\r
56[Guids]\r
57 #\r
58 # This is the VendorGuid of all architecturally defined variables in UEFI spec.\r
59 #\r
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
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
72 gEfiStandardErrorDeviceGuid ## SOMETIMES_PRODUCES ## UNDEFINED # protocol GUID installed on device handle\r
73 #\r
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
78 gEfiConsoleOutDeviceGuid ## SOMETIMES_PRODUCES ## UNDEFINED # protocol GUID installed on device handle\r
79 #\r
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
84 gEfiConsoleInDeviceGuid ## SOMETIMES_PRODUCES ## UNDEFINED # protocol GUID installed on device handle\r
85\r
86[Protocols]\r
87 gEfiDevicePathProtocolGuid ## TO_START\r
88 gEfiSimpleTextInProtocolGuid ## TO_START\r
89 gEfiSimpleTextOutProtocolGuid ## TO_START\r
90 gEfiPciIoProtocolGuid ## SOMETIMES_CONSUMES\r
91 gEfiGraphicsOutputProtocolGuid ## SOMETIMES_CONSUMES\r
92 gEfiUsbIoProtocolGuid ## SOMETIMES_CONSUMES\r
93\r
94[UserExtensions.TianoCore."ExtraFiles"]\r
95 ConPlatformDxeExtra.uni\r