igb_uio: install module when building with meson
authorLuca Boccassi <bluca@debian.org>
Mon, 17 Sep 2018 09:01:27 +0000 (10:01 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 17 Sep 2018 10:18:30 +0000 (12:18 +0200)
Install in $kerneldir/../extra/dpdk. Usually $kerneldir should something
like: /lib/modules/$kver/build, so this directory will match the default
one used by legacy makefiles.

Fixes: a52f4574f798 ("igb_uio: build with meson")
Cc: stable@dpdk.org
Signed-off-by: Luca Boccassi <bluca@debian.org>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
kernel/linux/igb_uio/meson.build
meson_options.txt

index 71ed2e7..f5a9d5c 100644 (file)
@@ -15,4 +15,6 @@ custom_target('igb_uio',
                        '/../../../lib/librte_eal/common/include',
                'modules'],
        depends: mkfile,
+       install: true,
+       install_dir: kernel_dir + '/../extra/dpdk',
        build_by_default: get_option('enable_kmods'))
index c843278..f208872 100644 (file)
@@ -7,7 +7,7 @@ option('examples', type: 'string', value: '',
 option('include_subdir_arch', type: 'string', value: '',
        description: 'subdirectory where to install arch-dependent headers')
 option('kernel_dir', type: 'string', value: '',
-       description: 'path to the kernel for building kernel modules')
+       description: 'path to the kernel for building kernel modules, they will be installed in $DEST_DIR/$kernel_dir/../extra/dpdk')
 option('lib_musdk_dir', type: 'string', value: '',
        description: 'path to the MUSDK library installation directory')
 option('machine', type: 'string', value: 'native',