From patchwork Wed Nov 8 04:44:33 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Srikanth Yalavarthi X-Patchwork-Id: 133968 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 3F9B9432CE; Wed, 8 Nov 2023 05:44:49 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0E9E7402D4; Wed, 8 Nov 2023 05:44:49 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 6105A40279 for ; Wed, 8 Nov 2023 05:44:47 +0100 (CET) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 3A7LLPs2007617; Tue, 7 Nov 2023 20:44:46 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=Zriq2zkwP56kRWxuOr3rlafD9dKTaCDVCBqahqI9sWA=; b=EMxA2FSjYWUP6nu6aeJAHkQRmSAZUjCi4rgyoFStwFL4IJtUFJhqfxHCtBDxRnEPd2zE ERHsCA6xenU+AxxZ3btyGRWb6Ie5vo8fBNDUF/tEmA7s+RoGG4olmo6JaKjBabpC8zPq p6u3zNN6+FM0rF1eRAIZcY0Xtd8VMT4VxNcjn+Nbt9jp/aTyMUgFtC5D4yJqtvN5z1iW /0BoV9EgTRoWi+GFx5VXxkFAYZlv5a5tWfKHLEM615JXIeMMAHq6LKT0IRL2Mmf3v9Nu cdXrV+jon8RsZh5R32KwMPka5v/75elAuCiF/+cOgDU42J2yQHNBAcx5taNlrk+9+pHn EQ== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3u7w2nsf8v-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Tue, 07 Nov 2023 20:44:46 -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; Tue, 7 Nov 2023 20:44:35 -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; Tue, 7 Nov 2023 20:44:35 -0800 Received: from ml-host-33.caveonetworks.com (unknown [10.110.143.233]) by maili.marvell.com (Postfix) with ESMTP id 2A78C5B6953; Tue, 7 Nov 2023 20:44:35 -0800 (PST) From: Srikanth Yalavarthi To: CC: , , , , Subject: [PATCH v1 1/1] devtools: update sources in build tags script Date: Tue, 7 Nov 2023 20:44:33 -0800 Message-ID: <20231108044433.11176-1-syalavarthi@marvell.com> X-Mailer: git-send-email 2.42.0 MIME-Version: 1.0 X-Proofpoint-GUID: pdqoNaqYoGXBglIGUgVM_M3qQN2j3Z-i X-Proofpoint-ORIG-GUID: pdqoNaqYoGXBglIGUgVM_M3qQN2j3Z-i 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. Signed-off-by: Srikanth Yalavarthi 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()