From patchwork Wed Nov 8 09:28:27 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Srikanth Yalavarthi X-Patchwork-Id: 133970 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id E4371432D5; Wed, 8 Nov 2023 10:28:35 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D2E52402DA; Wed, 8 Nov 2023 10:28:35 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id B125C402C2 for ; Wed, 8 Nov 2023 10:28:33 +0100 (CET) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 3A88iuRo024392; Wed, 8 Nov 2023 01:28:33 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=4qva4zG5TMvoMJjSfrmJ4BM1xvYF0oJ2VtMLoFQhjcw=; b=dxtPsw6IQ+R2ce583jXpvhedzJSbtUP5pkMHKogtJESXN8K0iFKP4RVIXIcGsAwKDpb2 kBW4DD+fd3mw62CffUivvNxmNn3JxYFyxQQuG3fmaLTSlPHpP9rZgX5oTFsTdoFIjZS9 jNZ4NmL48X7l/gxPmOxHSXcdRlfybmcOyBH2zcce25vIO+FJKbeAYSok1nw4npBGWc0n ls7NMXCpxGbMLnLygAD9iqp7v4x7GhufMCiwMtF7qeRvOyTBqfV3y4xTRRre1aBzVWky syC/mZfizzUtFUpOTb3xd252xjPE7agx8KNnBPtCb1ITA77g+KFdSMojeA57vGayClG/ 5A== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3u7w2mjjwj-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Wed, 08 Nov 2023 01:28:32 -0800 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.48; Wed, 8 Nov 2023 01:28:30 -0800 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.48 via Frontend Transport; Wed, 8 Nov 2023 01:28:30 -0800 Received: from ml-host-33.caveonetworks.com (unknown [10.110.143.233]) by maili.marvell.com (Postfix) with ESMTP id 533745B6953; Wed, 8 Nov 2023 01:28:30 -0800 (PST) From: Srikanth Yalavarthi To: Bruce Richardson , David Marchand , =?utf-8?q?Morten_Br=C3=B8rup?= , Stephen Hemminger , Thomas Monjalon CC: , , , Subject: [PATCH v2 1/1] devtools: update sources in build tags script Date: Wed, 8 Nov 2023 01:28:27 -0800 Message-ID: <20231108092828.17628-1-syalavarthi@marvell.com> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20231108044433.11176-1-syalavarthi@marvell.com> References: <20231108044433.11176-1-syalavarthi@marvell.com> MIME-Version: 1.0 X-Proofpoint-GUID: N0Qa8Sk9HTFuKyLR4uYoAHIWm_wQQZ7k X-Proofpoint-ORIG-GUID: N0Qa8Sk9HTFuKyLR4uYoAHIWm_wQQZ7k X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.272,Aquarius:18.0.987,Hydra:6.0.619,FMLib:17.11.176.26 definitions=2023-11-08_01,2023-11-07_01,2023-05-22_02 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org As part of deprecating kmods meson option, 'kernel/linux' directory is removed from the repository. This patch removes non-existing 'kernel/linux' directory from linux_sources of build tags script. Fixes: a52d472c5c94 ("build: deprecate kmods meson option") Signed-off-by: Srikanth Yalavarthi Acked-by: Morten Brørup Acked-by: Ferruh Yigit --- devtools/build-tags.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/devtools/build-tags.sh b/devtools/build-tags.sh index bf3b13ebac..e07349a47f 100755 --- a/devtools/build-tags.sh +++ b/devtools/build-tags.sh @@ -68,7 +68,6 @@ common_sources() linux_sources() { find_sources "lib/eal/linux" '*.[chS]' - find_sources "kernel/linux" '*.[chS]' } bsd_sources()