From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mx.groups.io with SMTP id smtpd.web11.5165.1648631819413889767 for ; Wed, 30 Mar 2022 02:17:03 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=Gnb9Vile; spf=pass (domain: intel.com, ip: 134.134.136.126, 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=1648631823; x=1680167823; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=FvpfKwGGwEDHaG3io6S6BIgPMjRO0mgCjwkcMoeStUA=; b=Gnb9VileS0aUgWPlWG6wVQLTDT61iuKAEajJIJsBNgvxnxwpV/7x7MQy 2OqQ/uvM3r2gOQWX5mnx9Jkr+Sb43F+FiU0m/4EB66+hmVKjPClD0ENCb bLn7sMkksoZDUF7L8fSaqmQwDLi2luLEWjMrXUWbRRcBOt/lTbMo098RA 4SoqsV+g01TUcxUZ7XzQ50H6iQqWJrd1lC+HV3XZULAltvyg+q5M4hgtY nZsXu6jXDkrk5Lh6aqEk/vSAOSEi/fIv8narJ+P+Y2GBuqsvblM6or4Kr AMVwUux1TUj9rX7v+7U+XF2qnOoNzwDf0R1LUQu83JKFtdT41B37d0UMS Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10301"; a="241650857" X-IronPort-AV: E=Sophos;i="5.90,222,1643702400"; d="scan'208";a="241650857" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Mar 2022 02:17:02 -0700 X-IronPort-AV: E=Sophos;i="5.90,222,1643702400"; d="scan'208";a="521821437" Received: from shwdeopenlab705.ccr.corp.intel.com ([10.239.182.56]) by orsmga006-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Mar 2022 02:17:01 -0700 From: "Yuanhao Xie" To: devel@edk2.groups.io Cc: Guo Dong , Ray Ni , Maurice Ma , Benjamin You , Sean Rhodes Subject: [Patch V2 2/2] UefiPayloadPkg: Consume the new added DebugPrintErrorLevelLib instance Date: Wed, 30 Mar 2022 17:16:49 +0800 Message-Id: <20220330091649.793-2-yuanhao.xie@intel.com> X-Mailer: git-send-email 2.30.0.windows.1 In-Reply-To: <20220330091649.793-1-yuanhao.xie@intel.com> References: <20220330091649.793-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