From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.88; helo=mga01.intel.com; envelope-from=shenglei.zhang@intel.com; receiver=edk2-devel@lists.01.org Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) (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 A002F211F2693 for ; Tue, 2 Apr 2019 23:33:07 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 02 Apr 2019 23:33:06 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,303,1549958400"; d="scan'208";a="160922244" Received: from shenglei-mobl.ccr.corp.intel.com ([10.239.198.87]) by fmsmga001.fm.intel.com with ESMTP; 02 Apr 2019 23:33:05 -0700 From: shenglei To: edk2-devel@lists.01.org Cc: Hao Wu , Shenglei Zhang Date: Wed, 3 Apr 2019 14:31:35 +0800 Message-Id: <20190403063135.10428-1-shenglei.zhang@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 Subject: [PATCH] SourceLevelDebugPkg/DebugAgent: Remove AsmFuncs.S in INF 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: Wed, 03 Apr 2019 06:33:07 -0000 AsmFuncs.S is removed at c7d22535f7dc90b8fef70153ef98549228569680. And also it should be removed in SecPeiDebugAgentLib.inf and SmmDebugAgentLib.inf. Cc: Hao Wu Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang --- SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf | 2 -- SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.inf | 2 -- 2 files changed, 4 deletions(-) diff --git a/SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf b/SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf index 03ebbb6e74..8b81795d96 100644 --- a/SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf +++ b/SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf @@ -39,14 +39,12 @@ DebugAgentCommon/DebugMp.h [Sources.Ia32] - DebugAgentCommon/Ia32/AsmFuncs.S DebugAgentCommon/Ia32/AsmFuncs.nasm DebugAgentCommon/Ia32/ArchDebugSupport.h DebugAgentCommon/Ia32/ArchDebugSupport.c DebugAgentCommon/Ia32/DebugException.h [Sources.X64] - DebugAgentCommon/X64/AsmFuncs.S DebugAgentCommon/X64/AsmFuncs.nasm DebugAgentCommon/X64/ArchDebugSupport.h DebugAgentCommon/X64/ArchDebugSupport.c diff --git a/SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.inf b/SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.inf index 08ed1777be..f1b32daab3 100644 --- a/SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.inf +++ b/SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.inf @@ -39,14 +39,12 @@ DebugAgentCommon/DebugMp.h [Sources.Ia32] - DebugAgentCommon/Ia32/AsmFuncs.S DebugAgentCommon/Ia32/AsmFuncs.nasm DebugAgentCommon/Ia32/ArchDebugSupport.h DebugAgentCommon/Ia32/ArchDebugSupport.c DebugAgentCommon/Ia32/DebugException.h [Sources.X64] - DebugAgentCommon/X64/AsmFuncs.S DebugAgentCommon/X64/AsmFuncs.nasm DebugAgentCommon/X64/ArchDebugSupport.h DebugAgentCommon/X64/ArchDebugSupport.c -- 2.18.0.windows.1