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