From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by mx.groups.io with SMTP id smtpd.web12.1577.1648687302293927726 for ; Wed, 30 Mar 2022 17:41:43 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=CY0dOSCj; spf=pass (domain: intel.com, ip: 134.134.136.31, mailfrom: yuanhao.xie@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1648687302; x=1680223302; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=FvpfKwGGwEDHaG3io6S6BIgPMjRO0mgCjwkcMoeStUA=; b=CY0dOSCjsQ9cWGe4/JKBI6G/y8eIfSJuQBXUGCfTMy6rbqq75SpqJ5SE 7g5ZPNIxmdf+R0f28oWMpVNXEpfdhgSAqIkyAKB2ixjonatSfC/DRRoOM o7APY/coeN7M6LR/z/qol3yuhL6CB0gVziHMus/u51nv0MxNJDZAe64I3 siLcAZbGU4PkcqPVVZLTulik+nf9qZe8czKWRkiEAmh/TzNlZVwAOsY/Y ibJG8aMPgMx4CpW79gLPvoK0I3JhZV7JFptJZmyvV4XnEkiSD0vo9nKVx SUWOcSFrPi8uBybDXOL4Wy1FFMz3ntj15nuy2gG1ZzuDs8fSg0o/sawbz w==; X-IronPort-AV: E=McAfee;i="6200,9189,10302"; a="320375194" X-IronPort-AV: E=Sophos;i="5.90,223,1643702400"; d="scan'208";a="320375194" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Mar 2022 17:41:34 -0700 X-IronPort-AV: E=Sophos;i="5.90,223,1643702400"; d="scan'208";a="547071428" Received: from shwdeopenlab705.ccr.corp.intel.com ([10.239.182.56]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Mar 2022 17:41:32 -0700 From: "Yuanhao Xie" To: devel@edk2.groups.io Cc: Guo Dong , Ray Ni , Maurice Ma , Benjamin You , Sean Rhodes Subject: [Patch V3 2/2] UefiPayloadPkg: Consume the new added DebugPrintErrorLevelLib instance Date: Thu, 31 Mar 2022 08:41:19 +0800 Message-Id: <20220331004119.896-2-yuanhao.xie@intel.com> X-Mailer: git-send-email 2.30.0.windows.1 In-Reply-To: <20220331004119.896-1-yuanhao.xie@intel.com> References: <20220331004119.896-1-yuanhao.xie@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Change the DebugPrintErrorLevelLib instance in UefiPayloadPkg.dsc to allow bootloader to config DebugPrintErrorLevel. Cc: Guo Dong Cc: Ray Ni Cc: Maurice Ma Cc: Benjamin You Cc: Sean Rhodes Signed-off-by: Yuanhao Xie --- UefiPayloadPkg/UefiPayloadPkg.dsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UefiPayloadPkg/UefiPayloadPkg.dsc b/UefiPayloadPkg/UefiPayloadPkg.dsc index 14a8d157a2..49563e3d87 100644 --- a/UefiPayloadPkg/UefiPayloadPkg.dsc +++ b/UefiPayloadPkg/UefiPayloadPkg.dsc @@ -239,7 +239,7 @@ # # Misc # - DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf + DebugPrintErrorLevelLib|UefiPayloadPkg/Library/DebugPrintErrorLevelLibHob/DebugPrintErrorLevelLibHob.inf PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf !if $(SOURCE_DEBUG_ENABLE) == TRUE PeCoffExtraActionLib|SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf -- 2.30.0.windows.1