diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-03-26 15:18:10 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-03-26 15:18:10 +0000 |
commit | bda1bdbbf0a4d2a8c139563794dc7e451dfe3b8a (patch) | |
tree | 6ba93abf5dd32765b0254b552144a2137b21260d | |
parent | 03e0648b3253114006ef914284c3324102fa4d4d (diff) | |
download | edk2-platforms-bda1bdbbf0a4d2a8c139563794dc7e451dfe3b8a.tar.xz |
Add more comments for override PCD and library instance.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7962 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | DuetPkg/DuetPkg.dsc | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/DuetPkg/DuetPkg.dsc b/DuetPkg/DuetPkg.dsc index b13a13c8f4..7c8153b3d2 100644 --- a/DuetPkg/DuetPkg.dsc +++ b/DuetPkg/DuetPkg.dsc @@ -87,12 +87,21 @@ [Components.common] DuetPkg/DxeIpl/DxeIpl.inf { - <LibraryClasses> - DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
+ <LibraryClasses>
+ # + # If no following overriden for ReportStatusCodeLib library class,
+ # All other module can *not* output debug information even they are use not NULL library
+ # instance for DebugLib and ReportStatusCodeLib
+ #
ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf } MdeModulePkg/Core/Dxe/DxeMain.inf {
+ #
+ # Enable debug output for DxeCore module, this is a sample for how to enable debug output
+ # for a module. If need turn on debug output for other module, please copy following overriden
+ # PCD and library instance to other module's override section.
+ #
<PcdsFixedAtBuild>
gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07
gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x2F
|