Re: [dpdk-dev] [PATCH v3] kernel/linux: fix kernel dir for meson

2019-12-09 Thread Bruce Richardson
On Sun, Dec 08, 2019 at 09:26:57AM +0800, Ye Xiaolong wrote: > On 12/04, Bruce Richardson wrote: > >On Wed, Dec 04, 2019 at 10:18:21PM +0800, Ye Xiaolong wrote: > >> On 12/04, Luca Boccassi wrote: > >> >On Tue, 2019-12-03 at 23:59 +0800, Xiaolong Ye wrote: > >> >> kernel_dir option in meson build i

Re: [dpdk-dev] [PATCH v3] kernel/linux: fix kernel dir for meson

2019-12-07 Thread Ye Xiaolong
On 12/04, Bruce Richardson wrote: >On Wed, Dec 04, 2019 at 10:18:21PM +0800, Ye Xiaolong wrote: >> On 12/04, Luca Boccassi wrote: >> >On Tue, 2019-12-03 at 23:59 +0800, Xiaolong Ye wrote: >> >> kernel_dir option in meson build is equivalent to RTE_KERNELDIR in >> >> make >> >> system, for cross-com

Re: [dpdk-dev] [PATCH v3] kernel/linux: fix kernel dir for meson

2019-12-04 Thread Bruce Richardson
On Wed, Dec 04, 2019 at 10:18:21PM +0800, Ye Xiaolong wrote: > On 12/04, Luca Boccassi wrote: > >On Tue, 2019-12-03 at 23:59 +0800, Xiaolong Ye wrote: > >> kernel_dir option in meson build is equivalent to RTE_KERNELDIR in > >> make > >> system, for cross-compilation case, users would specify it as

Re: [dpdk-dev] [PATCH v3] kernel/linux: fix kernel dir for meson

2019-12-04 Thread Ye Xiaolong
On 12/04, Luca Boccassi wrote: >On Tue, 2019-12-03 at 23:59 +0800, Xiaolong Ye wrote: >> kernel_dir option in meson build is equivalent to RTE_KERNELDIR in >> make >> system, for cross-compilation case, users would specify it as local >> kernel src dir like >> >> //target-arm_glibc/linux-arm/linux

Re: [dpdk-dev] [PATCH v3] kernel/linux: fix kernel dir for meson

2019-12-04 Thread Luca Boccassi
On Tue, 2019-12-03 at 23:59 +0800, Xiaolong Ye wrote: > kernel_dir option in meson build is equivalent to RTE_KERNELDIR in > make > system, for cross-compilation case, users would specify it as local > kernel src dir like > > //target-arm_glibc/linux-arm/linux-4.19.81/ > > Current meson build wou

[dpdk-dev] [PATCH v3] kernel/linux: fix kernel dir for meson

2019-12-03 Thread Xiaolong Ye
kernel_dir option in meson build is equivalent to RTE_KERNELDIR in make system, for cross-compilation case, users would specify it as local kernel src dir like //target-arm_glibc/linux-arm/linux-4.19.81/ Current meson build would fail to compile kernel module if user specify kernel_dir as above,