]> git.droids-corp.org - dpdk.git/commitdiff
config: disable Linux kernel modules by default
authorJerin Jacob <jerinj@marvell.com>
Fri, 17 Jan 2020 19:14:00 +0000 (00:44 +0530)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 20 Jan 2020 17:38:44 +0000 (18:38 +0100)
Based on the techboard meeting held on 2019-11-06,
It's been decided to disable all kmods by default from v20.02.

http://mails.dpdk.org/archives/dev/2019-November/151763.html

Signed-off-by: Jerin Jacob <jerinj@marvell.com>
config/common_linux
doc/guides/rel_notes/release_20_02.rst
meson_options.txt

index c5cf3d66281641552ee5fd27058eb717e897f3fc..583efadc7da036701a1e870ac9bc1fc22919c8db 100644 (file)
@@ -8,9 +8,7 @@ CONFIG_RTE_EXEC_ENV_LINUX=y
 CONFIG_RTE_EXEC_ENV_LINUXAPP=y
 
 CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=y
-CONFIG_RTE_EAL_IGB_UIO=y
 CONFIG_RTE_EAL_VFIO=y
-CONFIG_RTE_KNI_KMOD=y
 CONFIG_RTE_LIBRTE_KNI=y
 CONFIG_RTE_LIBRTE_PMD_KNI=y
 CONFIG_RTE_LIBRTE_VHOST=y
index a65227eaf1b4d00fb42b1feace910022a206a38a..6b639878a65e69a2c0828f9bed760ce2bc78fe77 100644 (file)
@@ -150,6 +150,12 @@ Removed Items
    Also, make sure to start the actual text at the margin.
    =========================================================
 
+* **Disabled building all the Linux kernel modules by default.**
+
+  In order to remove the build time dependency with Linux kernel,
+  the Technical Board decided to disable all the kernel modules
+  by default from 20.02 version.
+
 
 API Changes
 -----------
index bc369d06c98adb44bcc3e92ebf538156f78ef43d..53dfe13c30e194bc37a6c81a7744ccc4b7303d15 100644 (file)
@@ -6,7 +6,7 @@ option('drivers_install_subdir', type: 'string', value: 'dpdk/pmds-<VERSION>',
        description: 'Subdirectory of libdir where to install PMDs. Defaults to using a versioned subdirectory.')
 option('enable_docs', type: 'boolean', value: false,
        description: 'build documentation')
-option('enable_kmods', type: 'boolean', value: true,
+option('enable_kmods', type: 'boolean', value: false,
        description: 'build kernel modules')
 option('examples', type: 'string', value: '',
        description: 'Comma-separated list of examples to build by default')