Re: [dpdk-dev] [PATCH] kernel/linux: fix modules install path

2019-06-10 Thread Igor Ryzhov
Thanks for the clarification, I get it now. I will send v2 later today. On Mon, Jun 10, 2019 at 2:12 PM Bruce Richardson wrote: > On Mon, Jun 10, 2019 at 02:04:26PM +0300, Igor Ryzhov wrote: > >Bruce, > >From my understanding, kernel_dir is a directory with kernel headers > >needed >

Re: [dpdk-dev] [PATCH] kernel/linux: fix modules install path

2019-06-10 Thread Bruce Richardson
On Mon, Jun 10, 2019 at 02:04:26PM +0300, Igor Ryzhov wrote: >Bruce, >From my understanding, kernel_dir is a directory with kernel headers >needed >for modules building. Right now, yes. I'd suggest that we change that to the actual kernel modules directory, and we get both the bui

Re: [dpdk-dev] [PATCH] kernel/linux: fix modules install path

2019-06-10 Thread Igor Ryzhov
Bruce, >From my understanding, kernel_dir is a directory with kernel headers needed for modules building. When it's formed automatically, yes, it will be "/lib/modules/version/build" and we can get installation directory by stripping "/build". But when it's set manually, it can be set to, for exam

Re: [dpdk-dev] [PATCH] kernel/linux: fix modules install path

2019-06-10 Thread Bruce Richardson
On Mon, Jun 10, 2019 at 11:25:52AM +0300, Igor Ryzhov wrote: > Currently kernel modules are installed into /usr/src/ instead of > /lib/modules when meson build system is used. This patch fixes that. > > Old build option "kernel_dir" is changed to "kernel_version". > > Signed-off-by: Igor Ryzhov