summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Universal
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2009-01-14 09:37:44 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2009-01-14 09:37:44 +0000
commit03d77031fe0c1223abb0f9601a48465409a7be85 (patch)
tree56d485f7543cc266791a39aba89279286d5a94f0 /MdeModulePkg/Universal
parent0bb0f0c95dab93026af22f917605cc88a579b312 (diff)
downloadedk2-platforms-03d77031fe0c1223abb0f9601a48465409a7be85.tar.xz
1. add gEfiDebugPortVariableGuid and gEfiDebugPortDevicePathGuid in MdePkg.dec, even though they are the same value with gEfiDebugPortProtocolGuid.
2. Meta data clean up. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7271 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal')
-rw-r--r--MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf43
-rw-r--r--MdeModulePkg/Universal/DebugPortDxe/DebugPortDxe.inf15
-rw-r--r--MdeModulePkg/Universal/DebugSupportDxe/DebugSupportDxe.inf4
3 files changed, 31 insertions, 31 deletions
diff --git a/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf b/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
index 595b6f043d..11982a1203 100644
--- a/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
+++ b/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
@@ -1,13 +1,13 @@
#/** @file
# This driver provides multi console supports.
#
-# This driver acts as a virtual console, takes over the console I/O control from selected
+# This driver acts as a virtual console, takes over the console I/O control from selected
# standard console devices, and transmits console I/O to related console device drivers.
# Consplitter could install Graphics Output protocol and/or UGA Draw protocol in system
# table according PCD settings(PcdConOutGopSupport, and PcdConOutUgaSupport). It always
-# consumes Graphics Output protocol which is produced by display device, and consumes UGA Draw
-# protocol which is produced by display device according to PcdUgaConsumeSupport value.
-# Note: If only UGA Draw protocol is installed in system table, PcdUgaConsumeSupport
+# consumes Graphics Output protocol which is produced by display device, and consumes UGA Draw
+# protocol which is produced by display device according to PcdUgaConsumeSupport value.
+# Note: If only UGA Draw protocol is installed in system table, PcdUgaConsumeSupport
# should be set to TRUE.
#
# Copyright (c) 2006 - 2008, Intel Corporation
@@ -27,7 +27,7 @@
BASE_NAME = ConSplitterDxe
FILE_GUID = 408edcec-cf6d-477c-a5a8-b4844e3de281
MODULE_TYPE = UEFI_DRIVER
- VERSION_STRING = 1.0
+ VERSION_STRING = 1.0
ENTRY_POINT = ConSplitterDriverEntry
#
@@ -71,24 +71,25 @@
PcdLib
[Guids]
- gEfiConsoleInDeviceGuid # ALWAYS_CONSUMED
- gEfiStandardErrorDeviceGuid # ALWAYS_CONSUMED
- gEfiConsoleOutDeviceGuid # ALWAYS_CONSUMED
- gEfiPrimaryConsoleOutDeviceGuid # ALWAYS_PRODUCED
- gEfiPrimaryConsoleInDeviceGuid # ALWAYS_PRODUCED
- gEfiPrimaryStandardErrorDeviceGuid # ALWAYS_PRODUCED
- gSimpleTextInExNotifyGuid # ALWAYS_PRODUCED
- gEfiGenericPlatformVariableGuid # ALWAYS_CONSUMED
+ gEfiConsoleInDeviceGuid ## SOMETIMES_CONSUMED
+ gEfiStandardErrorDeviceGuid ## SOMETIMES_CONSUMED
+ gEfiConsoleOutDeviceGuid ## SOMETIMES_CONSUMED
+ gEfiPrimaryConsoleOutDeviceGuid ## PRODUCED
+ gEfiPrimaryConsoleInDeviceGuid ## PRODUCED
+ gEfiPrimaryStandardErrorDeviceGuid ## PRODUCED
+ gSimpleTextInExNotifyGuid ## PRODUCED
+ gEfiGenericPlatformVariableGuid ## SOMETIMES_CONSUMED ## Variable:L"ConOutMode"
[Protocols]
- gEfiConsoleControlProtocolGuid # PROTOCOL ALWAYS_PRODUCED
- gEfiSimplePointerProtocolGuid # PROTOCOL ALWAYS_PRODUCED
- gEfiSimpleTextInProtocolGuid # PROTOCOL ALWAYS_PRODUCED
- gEfiSimpleTextInputExProtocolGuid # PROTOCOL ALWAYS_PRODUCED
- gEfiSimpleTextOutProtocolGuid # PROTOCOL ALWAYS_PRODUCED
- gEfiGraphicsOutputProtocolGuid # PROTOCOL ALWAYS_PRODUCED
- gEfiUgaDrawProtocolGuid # PROTOCOL ALWAYS_PRODUCED
- gEfiAbsolutePointerProtocolGuid # PROTOCOL ALWAYS_PRODUCED
+ gEfiConsoleControlProtocolGuid ## PRODUCED
+ gEfiSimplePointerProtocolGuid ## BY_START
+ gEfiAbsolutePointerProtocolGuid ## BY_START
+ gEfiSimpleTextInProtocolGuid ## BY_START
+ gEfiSimpleTextInputExProtocolGuid ## BY_START
+ gEfiSimpleTextOutProtocolGuid ## BY_START
+ gEfiGraphicsOutputProtocolGuid ## BY_START
+ gEfiUgaDrawProtocolGuid ## BY_START
+
[FeaturePcd.common]
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport
diff --git a/MdeModulePkg/Universal/DebugPortDxe/DebugPortDxe.inf b/MdeModulePkg/Universal/DebugPortDxe/DebugPortDxe.inf
index b1904a26a6..8c1d868621 100644
--- a/MdeModulePkg/Universal/DebugPortDxe/DebugPortDxe.inf
+++ b/MdeModulePkg/Universal/DebugPortDxe/DebugPortDxe.inf
@@ -21,7 +21,7 @@
BASE_NAME = DebugPortDxe
FILE_GUID = 73E9457A-CEA1-4917-9A9C-9F1F0F0FD322
MODULE_TYPE = UEFI_DRIVER
- VERSION_STRING = 1.0
+ VERSION_STRING = 1.0
ENTRY_POINT = InitializeDebugPortDriver
UNLOAD_IMAGE = ImageUnloadHandler
@@ -57,13 +57,12 @@
UefiDriverEntryPoint
DebugLib
+[Guids]
+ gEfiDebugPortVariableGuid ## SOMETIMES_CONSUMES ## Variable:L"DEBUGPORT"
+ gEfiDebugPortDevicePathGuid ## SOMETIMES_CONSUMES ## GUID
[Protocols]
- gEfiSerialIoProtocolGuid # PROTOCOL TO_START
- gEfiDevicePathProtocolGuid # PROTOCOL BY_START
- gEfiDebugPortProtocolGuid # PROTOCOL BY_START
-
-
-[Depex]
- TRUE
+ gEfiSerialIoProtocolGuid ## TO_START
+ gEfiDevicePathProtocolGuid ## BY_START
+ gEfiDebugPortProtocolGuid ## BY_START
diff --git a/MdeModulePkg/Universal/DebugSupportDxe/DebugSupportDxe.inf b/MdeModulePkg/Universal/DebugSupportDxe/DebugSupportDxe.inf
index 9b424e31fe..44a8f0666c 100644
--- a/MdeModulePkg/Universal/DebugSupportDxe/DebugSupportDxe.inf
+++ b/MdeModulePkg/Universal/DebugSupportDxe/DebugSupportDxe.inf
@@ -80,8 +80,8 @@
[Protocols]
- gEfiLoadedImageProtocolGuid # PROTOCOL ALWAYS_CONSUMED
- gEfiDebugSupportProtocolGuid # PROTOCOL ALWAYS_PRODUCED
+ gEfiLoadedImageProtocolGuid ## CONSUMED
+ gEfiDebugSupportProtocolGuid ## PRODUCED
[FeaturePcd.IA32]