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 c5cf3d6..583efad 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 a65227e..6b63987 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 bc369d0..53dfe13 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')