From patchwork Wed Jul 17 15:54:42 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jerin Jacob Kollanukkaran X-Patchwork-Id: 56649 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7AA101BE4E; Wed, 17 Jul 2019 17:54:47 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id 2655D1BE3E; Wed, 17 Jul 2019 17:54:45 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id x6HFpjGg010820; Wed, 17 Jul 2019 08:54:44 -0700 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=pfpt0818; bh=QIRrm6A6HvGUbHvPpM/URtIu4Ljp6sYAeeKNuslPtFk=; b=lnYVG75kh0E6WWeR3LOOXK+HGfc196E9nyjMTRCRp2coyxBrRfxBqfcRYQrend/BYr6G wD6ucsk946hMX2tX/rFiws3AQtyjqtVsl/9OJF/mLNs4kFyh9UjCzvqK/cETelWz35Xk Q2bECjUzEdUjLzdTCDwwT3tGpc+txbGRfMoR5/q9hMFVmnHYAITKjBEgDQjtK+JaCteG kL/448c6VQWYBCd66LCkwa8U6Ef3dYVu+MpomEDk1ceXJul2riepd6jD7Kvvl3JdVL9l q8EbpLrZtE9+Neu7k8uJVhM9Kic9SeMf2WcwNhB7btcoW6m3PorDwft8MLgMTR6ZgPAN DQ== Received: from sc-exch01.marvell.com ([199.233.58.181]) by mx0a-0016f401.pphosted.com with ESMTP id 2ts07vgwhv-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Wed, 17 Jul 2019 08:54:44 -0700 Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Wed, 17 Jul 2019 08:54:43 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Wed, 17 Jul 2019 08:54:43 -0700 Received: from jerin-lab.marvell.com (jerin-lab.marvell.com [10.28.34.14]) by maili.marvell.com (Postfix) with ESMTP id CD53A3F703F; Wed, 17 Jul 2019 08:54:41 -0700 (PDT) From: To: CC: , Jerin Jacob , Date: Wed, 17 Jul 2019 21:24:42 +0530 Message-ID: <20190717155442.48187-1-jerinj@marvell.com> X-Mailer: git-send-email 2.22.0 MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:5.22.84,1.0.8 definitions=2019-07-17_07:2019-07-17,2019-07-17 signatures=0 Subject: [dpdk-dev] [PATCH] devtools: fix building kernel component tags X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" From: Jerin Jacob Update devtools/build-tags.sh to account the kernel components under in kernel directory. Fixes: acaa9ee991b5 ("move kernel modules directories") Cc: stable@dpdk.org Signed-off-by: Jerin Jacob --- devtools/build-tags.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/devtools/build-tags.sh b/devtools/build-tags.sh index d395da47e..dc037f92b 100755 --- a/devtools/build-tags.sh +++ b/devtools/build-tags.sh @@ -68,11 +68,13 @@ common_sources() linux_sources() { find_sources "lib/librte_eal/linux" '*.[chS]' + find_sources "kernel/linux" '*.[chS]' } bsd_sources() { find_sources "lib/librte_eal/freebsd" '*.[chS]' + find_sources "kernel/freebsd" '*.[chS]' } arm_common()