From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mx.groups.io with SMTP id smtpd.web08.7201.1648029680907403376 for ; Wed, 23 Mar 2022 03:01:21 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=bZtZou+k; spf=pass (domain: intel.com, ip: 192.55.52.93, 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=1648029680; x=1679565680; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=G4FlN8NqjIhi0ryUpXL3zzesqJbCvjxeM+c/rV1cazs=; b=bZtZou+kp3pZOwqO4ZeWxihNjgrbGasW2kvpH1Gwl4FW/3O3bGWTQyRY AIwkcIc5IIMSJOgXRSjJGEKXNs/qHv2vBDNyAptY/EgiaitSDAW82whEO +cFa+0ecXqhInItqsiTy42DoQ4NeSerZinwRmtQSPIoJ9YTlyh2ay5Xcw DjObEuS9jcpgZIhkNO3u+XZw9nb4dkXqpYSTFGKqEuTT829PmTF3z3f9w vPlBSdScNIMqL5k8b+hk3GPytJkDNyY3Ex3L/p0wjjdfSGYIPQnWzmMtK yYV/ITfzWpnBE/PMPuyo+VSAYjOdJGcRjGH9KhMp8kq1FdEyvVNVPPIt9 g==; X-IronPort-AV: E=McAfee;i="6200,9189,10294"; a="255634316" X-IronPort-AV: E=Sophos;i="5.90,203,1643702400"; d="scan'208";a="255634316" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Mar 2022 03:01:19 -0700 X-IronPort-AV: E=Sophos;i="5.90,203,1643702400"; d="scan'208";a="560828647" Received: from shwdeopenlab705.ccr.corp.intel.com ([10.239.182.56]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Mar 2022 03:01:17 -0700 From: "Yuanhao Xie" To: devel@edk2.groups.io Cc: Guo Dong , Ray Ni , Maurice Ma , Benjamin You , Sean Rhodes Subject: [PATCH 2/2] UefiPayloadPkg: Consume the new added DebugPrintErrorLevelLib instance. Date: Wed, 23 Mar 2022 18:00:53 +0800 Message-Id: <20220323100053.373-2-yuanhao.xie@intel.com> X-Mailer: git-send-email 2.30.0.windows.1 In-Reply-To: <20220323100053.373-1-yuanhao.xie@intel.com> References: <20220323100053.373-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..6feb9f5423 100644 --- a/UefiPayloadPkg/UefiPayloadPkg.dsc +++ b/UefiPayloadPkg/UefiPayloadPkg.dsc @@ -239,7 +239,7 @@ # # Misc # - DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf + DebugPrintErrorLevelLib|UefiPayloadPkg/Library/DebugPrintErrorLevelLibCmos/DebugPrintErrorLevelLibCmos.inf PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf !if $(SOURCE_DEBUG_ENABLE) == TRUE PeCoffExtraActionLib|SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf -- 2.30.0.windows.1