devtools: fix building kernel component tags

Message ID 20190717155442.48187-1-jerinj@marvell.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series devtools: fix building kernel component tags |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK
ci/intel-Performance-Testing success Performance Testing PASS
ci/mellanox-Performance-Testing success Performance Testing PASS

Commit Message

Jerin Jacob Kollanukkaran July 17, 2019, 3:54 p.m. UTC
  From: Jerin Jacob <jerinj@marvell.com>

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 <jerinj@marvell.com>
---
 devtools/build-tags.sh | 2 ++
 1 file changed, 2 insertions(+)
  

Comments

Thomas Monjalon July 30, 2019, 9:53 p.m. UTC | #1
17/07/2019 17:54, jerinj@marvell.com:
> From: Jerin Jacob <jerinj@marvell.com>
> 
> 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 <jerinj@marvell.com>

Applied, thanks
  

Patch

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()