From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.31; helo=mga06.intel.com; envelope-from=jiansongx.xu@intel.com; receiver=edk2-devel@lists.01.org Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 576F2211B6C12 for ; Wed, 16 Jan 2019 22:21:57 -0800 (PST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 16 Jan 2019 22:21:56 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,488,1539673200"; d="scan'208";a="311131612" Received: from unknown (HELO jiansonx-MOBL1.ccr.corp.intel.com) ([10.239.198.62]) by fmsmga006.fm.intel.com with ESMTP; 16 Jan 2019 22:21:55 -0800 From: Jiansong Xu To: edk2-devel@lists.01.org Cc: jiansonx , Gao Liming Date: Thu, 17 Jan 2019 14:21:54 +0800 Message-Id: <20190117062154.9804-1-jiansongx.xu@intel.com> X-Mailer: git-send-email 2.20.1.windows.1 MIME-Version: 1.0 Subject: [PATCH] MdePkg/UefiDebugLibStdErr: Modify supported type. X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jan 2019 06:21:57 -0000 Content-Transfer-Encoding: 8bit From: jiansonx BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1416 Remove DXE_RUNTIME_DRIVER and DXE_SMM_DRIVER type from the supported module type list in the library INF file. Then, these library instances don't support DXE_RUNTIME_DRIVER and DXE_SMM_DRIVER type any more. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Jiansong Xu Cc: Gao Liming --- MdePkg/Library/UefiDebugLibStdErr/UefiDebugLibStdErr.inf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MdePkg/Library/UefiDebugLibStdErr/UefiDebugLibStdErr.inf b/MdePkg/Library/UefiDebugLibStdErr/UefiDebugLibStdErr.inf index fe333b05ce..dd0a9e5d7e 100644 --- a/MdePkg/Library/UefiDebugLibStdErr/UefiDebugLibStdErr.inf +++ b/MdePkg/Library/UefiDebugLibStdErr/UefiDebugLibStdErr.inf @@ -22,7 +22,7 @@ FILE_GUID = b57a1df6-ffdb-4247-a3df-3a562176751a MODULE_TYPE = UEFI_DRIVER VERSION_STRING = 1.0 - LIBRARY_CLASS = DebugLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER + LIBRARY_CLASS = DebugLib|DXE_CORE DXE_DRIVER UEFI_APPLICATION UEFI_DRIVER # -- 2.16.2.windows.1