]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
892d051a1a1f16255eca860a47f8913eb7731632
[mirror_edk2.git] / MdeModulePkg / Universal / Console / ConPlatformDxe / ConPlatformDxe.inf
1 #/** @file
2 # Console Platfrom DXE Driver that specifies whether device can be used as console
3 # input/output device or error output device and update global variables accordingly.
4 #
5 # Copyright (c) 2006 - 2008, Intel Corporation
6 #
7 # All rights reserved. This program and the accompanying materials
8 # are licensed and made available under the terms and conditions of the BSD License
9 # which accompanies this distribution. The full text of the license may be found at
10 # http://opensource.org/licenses/bsd-license.php
11 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 #
14 #
15 #**/
16
17 [Defines]
18 INF_VERSION = 0x00010005
19 BASE_NAME = ConPlatformDxe
20 FILE_GUID = 51ccf399-4fdf-4e55-a45b-e123f84d456a
21 MODULE_TYPE = UEFI_DRIVER
22 VERSION_STRING = 1.0
23 ENTRY_POINT = InitializeConPlatform
24
25 #
26 # The following information is for reference only and not required by the build tools.
27 #
28 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
29 #
30 # DRIVER_BINDING = gConPlatformTextInDriverBinding
31 # COMPONENT_NAME = gConPlatformComponentName
32 # COMPONENT_NAME2 = gConPlatformComponentName2
33 # DRIVER_BINDING = gConPlatformTextOutDriverBinding
34 # COMPONENT_NAME = gConPlatformComponentName
35 # COMPONENT_NAME2 = gConPlatformComponentName2
36 #
37
38 [Sources.common]
39 ComponentName.c
40 ConPlatform.h
41 ConPlatform.c
42
43 [Packages]
44 MdePkg/MdePkg.dec
45 MdeModulePkg/MdeModulePkg.dec
46
47 [LibraryClasses]
48 MemoryAllocationLib
49 DevicePathLib
50 UefiRuntimeServicesTableLib
51 UefiBootServicesTableLib
52 BaseMemoryLib
53 UefiLib
54 UefiDriverEntryPoint
55 DebugLib
56
57 [Guids]
58 ##
59 # This is the VendorGuid of all architecturally defined variables in UEFI spec.
60 #
61 gEfiGlobalVariableGuid ## CONSUMES ## Variable:L"ConIn"
62 gEfiGlobalVariableGuid ## CONSUMES ## Variable:L"ConOut"
63 gEfiGlobalVariableGuid ## CONSUMES ## Variable:L"ErrOut"
64 gEfiGlobalVariableGuid ## CONSUMES ## Variable:L"ConInDev"
65 gEfiGlobalVariableGuid ## CONSUMES ## Variable:L"ConOutDev"
66 gEfiGlobalVariableGuid ## CONSUMES ## Variable:L"ErrOutDev"
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 ## PROTOCOL
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 ## PROTOCOL
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 ## PROTOCOL
85
86 [Protocols]
87 gEfiDevicePathProtocolGuid ## TO_START
88 gEfiSimpleTextInProtocolGuid ## TO_START
89 gEfiSimpleTextOutProtocolGuid ## TO_START
90