diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-02-03 02:23:03 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-02-03 02:23:03 +0000 |
commit | 3018ca2d36dc4b785379b1a0fa63c437367510be (patch) | |
tree | fa21edcc80e1e355939e0e20794c15c189d8d94d /MdeModulePkg/Library | |
parent | 269c0ba2d5d445424e7a039a0a34b3181d6e467f (diff) | |
download | edk2-platforms-3018ca2d36dc4b785379b1a0fa63c437367510be.tar.xz |
1) Clean up the INF and add in comment to describe the surface area of modules
2) Minor comment fix.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7413 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Library')
3 files changed, 13 insertions, 12 deletions
diff --git a/MdeModulePkg/Library/ExtendedIfrSupportLib/ExtendedIfrSupportLib.inf b/MdeModulePkg/Library/ExtendedIfrSupportLib/ExtendedIfrSupportLib.inf index 9e51bd37f3..4229b11dba 100644 --- a/MdeModulePkg/Library/ExtendedIfrSupportLib/ExtendedIfrSupportLib.inf +++ b/MdeModulePkg/Library/ExtendedIfrSupportLib/ExtendedIfrSupportLib.inf @@ -55,9 +55,9 @@ PcdLib
[Protocols]
- gEfiDevicePathProtocolGuid # PROTOCOL ALWAYS_CONSUMED
- gEfiHiiDatabaseProtocolGuid
- gEfiHiiStringProtocolGuid
+ gEfiHiiDatabaseProtocolGuid ## CONSUMES
+ gEfiHiiStringProtocolGuid ## CONSUMES
-[Pcd]
- gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang
+[Depex]
+ gEfiHiiDatabaseProtocolGuid AND
+ gEfiHiiStringProtocolGuid
diff --git a/MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf b/MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf index 365fef52ea..8c8a2f2c4a 100644 --- a/MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf +++ b/MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf @@ -53,15 +53,15 @@ UefiRuntimeServicesTableLib
[Protocols]
- gEfiHiiDatabaseProtocolGuid # ALWAYS_CONSUMED
- gEfiHiiStringProtocolGuid # ALWAYS_CONSUMED
- gEfiDevicePathProtocolGuid
+ gEfiHiiDatabaseProtocolGuid ## CONSUMES
+ gEfiHiiStringProtocolGuid ## CONSUMES
+ gEfiDevicePathProtocolGuid ## CONSUMES
[Pcd]
gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang
[Guids]
- gEfiGlobalVariableGuid
+ gEfiGlobalVariableGuid ## SOMETIMES_CONSUMES ## Variable:L"PlatformLang"
[Depex]
gEfiHiiDatabaseProtocolGuid AND
diff --git a/MdeModulePkg/Library/UefiIfrSupportLib/UefiIfrSupportLib.inf b/MdeModulePkg/Library/UefiIfrSupportLib/UefiIfrSupportLib.inf index 6bc8f06733..88d1c42759 100644 --- a/MdeModulePkg/Library/UefiIfrSupportLib/UefiIfrSupportLib.inf +++ b/MdeModulePkg/Library/UefiIfrSupportLib/UefiIfrSupportLib.inf @@ -52,6 +52,7 @@ DebugLib
[Protocols]
- gEfiDevicePathProtocolGuid # PROTOCOL ALWAYS_CONSUMED
- gEfiHiiConfigRoutingProtocolGuid
- gEfiFormBrowser2ProtocolGuid
+ gEfiDevicePathProtocolGuid ## CONSUMES
+ gEfiHiiConfigRoutingProtocolGuid ## CONSUMES
+ gEfiFormBrowser2ProtocolGuid ## CONSUMES
+
|