diff options
author | Liming Gao <liming.gao@intel.com> | 2015-02-06 06:39:16 +0000 |
---|---|---|
committer | lgao4 <lgao4@Edk2> | 2015-02-06 06:39:16 +0000 |
commit | 21dd93a928b461efaaa59a9d9e3fdcc76cffa9ad (patch) | |
tree | 74e2a59c2befde8621f1b6bcc0b35402819074d7 | |
parent | 5e795f936f54e86d2bfb8e131f90b4da9a367951 (diff) | |
download | edk2-platforms-21dd93a928b461efaaa59a9d9e3fdcc76cffa9ad.tar.xz |
MdePkg: Correct Help of Error Level
1. Error Level should be BIT31 instead of BIT28.
2. New PCD PcdFixedDebugPrintErrorLevel value should be mask value of all BITs so that it doesn't bring impact for current platform.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16799 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdePkg/MdePkg.dec | 8 | ||||
-rw-r--r-- | MdePkg/MdePkg.uni | bin | 66564 -> 66564 bytes |
2 files changed, 4 insertions, 4 deletions
diff --git a/MdePkg/MdePkg.dec b/MdePkg/MdePkg.dec index c9912b968f..89b40c0f50 100644 --- a/MdePkg/MdePkg.dec +++ b/MdePkg/MdePkg.dec @@ -1614,6 +1614,7 @@ gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueDxeDriverEnd|0x3040003|UINT32|0x30001014
## This flag is used to control build time optimization based on debug print level.
+ # Its default value is 0xFFFFFFFF to expose all debug print level.
# BIT0 - Initialization message.<BR>
# BIT1 - Warning message.<BR>
# BIT2 - Load Event message.<BR>
@@ -1632,10 +1633,9 @@ # BIT20 - Global Coherency Database changes message.<BR>
# BIT21 - Memory range cachability changes message.<BR>
# BIT22 - Detailed debug message.<BR>
- # BIT28 - Error message.<BR>
+ # BIT31 - Error message.<BR>
# @Prompt Fixed Debug Message Print Level.
- # @Expression 0x80000002 | (gEfiMdePkgTokenSpaceGuid.PcdFixedDebugPrintErrorLevel & 0x7F84AA00) == 0
- gEfiMdePkgTokenSpaceGuid.PcdFixedDebugPrintErrorLevel|0x80000000|UINT32|0x30001016
+ gEfiMdePkgTokenSpaceGuid.PcdFixedDebugPrintErrorLevel|0xFFFFFFFF|UINT32|0x30001016
[PcdsFixedAtBuild,PcdsPatchableInModule]
## Indicates the maximum length of unicode string used in the following
@@ -1701,7 +1701,7 @@ # BIT20 - Global Coherency Database changes message.<BR>
# BIT21 - Memory range cachability changes message.<BR>
# BIT22 - Detailed debug message.<BR>
- # BIT28 - Error message.<BR>
+ # BIT31 - Error message.<BR>
# @Prompt Debug Message Print Level.
# @Expression 0x80000002 | (gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel & 0x7F84AA00) == 0
gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000000|UINT32|0x00000006
diff --git a/MdePkg/MdePkg.uni b/MdePkg/MdePkg.uni Binary files differindex c357d61dd6..893e62c266 100644 --- a/MdePkg/MdePkg.uni +++ b/MdePkg/MdePkg.uni |