From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mx.groups.io with SMTP id smtpd.web11.2197.1645754159025017992 for ; Thu, 24 Feb 2022 17:55:59 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=KWj/ozqo; spf=pass (domain: intel.com, ip: 134.134.136.24, mailfrom: xiaolu.jiang@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1645754159; x=1677290159; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=jau4XO/i8rpKa+v5a6hziQjIzEL7wC4V2MVEpoKeXZk=; b=KWj/ozqoYy6lhSfQAdadYmmagl+rNwAtgdChps15qGBFFnRaKXb3VIEP 0qf8fHC7FbWw7Oi2I8QJSXkt3jJ1veXusJHUsVFwWbtA0GqFBeUhRAWw0 VHXh+aOu9bYWxuqpxuzhtjceZctbMFqpQmE7mQEsRlVLUmtk0CkhhG5pk FrH/tt6BWPtN081IJtZoxiJM1lAxE3Tyyfm98LjMdNwztOJx8ILrwQrm+ 22if1NtG7Cr8Y9bhiLibu/yE4rS/zlRELzhfreRQ/5K7yBDdHPZfCpWDm Wwjk2qJOTEm7ZjY5/Wmj25XGrPwKrtvqcpb9PYCaliAKjksffulwtEwjS g==; X-IronPort-AV: E=McAfee;i="6200,9189,10268"; a="252127573" X-IronPort-AV: E=Sophos;i="5.90,134,1643702400"; d="scan'208";a="252127573" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Feb 2022 17:55:57 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,134,1643702400"; d="scan'208";a="639954189" Received: from xiaolu-dev.ccr.corp.intel.com ([10.239.158.148]) by orsmga004.jf.intel.com with ESMTP; 24 Feb 2022 17:55:56 -0800 From: "Xiaolu.Jiang" To: devel@edk2.groups.io Cc: "Xiaolu.Jiang" , Jian J Wang , Liming Gao Subject: [edk2-devel][PATCH] edk2/MdeModulePkg/Debuglib: Add Standalone MM support Date: Fri, 25 Feb 2022 09:55:54 +0800 Message-Id: <20220225015554.2118-1-xiaolu.jiang@intel.com> X-Mailer: git-send-email 2.30.2.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable https://bugzilla.tianocore.org/show_bug.cgi?id=3D3844 This change added Standalone MM instance of DebugLib. Cc: Jian J Wang Cc: Liming Gao Signed-off-by: Xiaolu.Jiang --- .../PeiDxeDebugLibReportStatusCode.inf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebu= gLibReportStatusCode.inf b/MdeModulePkg/Library/PeiDxeDebugLibReportStatusC= ode/PeiDxeDebugLibReportStatusCode.inf index b52fc5686a..c7b75de38a 100644 --- a/MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibRep= ortStatusCode.inf +++ b/MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibRep= ortStatusCode.inf @@ -2,7 +2,7 @@ # Debug Library based on report status code library=0D #=0D # Debug Library for PEIMs and DXE drivers that sends debug messages to Re= portStatusCode=0D -# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.
= =0D +# Copyright (c) 2006 - 2022, Intel Corporation. All rights reserved.
= =0D #=0D # SPDX-License-Identifier: BSD-2-Clause-Patent=0D #=0D @@ -16,7 +16,7 @@ FILE_GUID =3D bda39d3a-451b-4350-8266-81ab10fa0523= =0D MODULE_TYPE =3D PEIM=0D VERSION_STRING =3D 1.0=0D - LIBRARY_CLASS =3D DebugLib|DXE_CORE DXE_DRIVER DXE_RUNT= IME_DRIVER DXE_SMM_DRIVER SMM_CORE PEIM SEC PEI_CORE UEFI_APPLICATION UEFI_= DRIVER=0D + LIBRARY_CLASS =3D DebugLib|DXE_CORE DXE_DRIVER DXE_RUNT= IME_DRIVER DXE_SMM_DRIVER SMM_CORE PEIM SEC PEI_CORE UEFI_APPLICATION UEFI_= DRIVER MM_STANDALONE=0D =0D #=0D # The following information is for reference only and not required by the = build tools.=0D --=20 2.30.2.windows.1