scripts: fix ABI validator for KNI module config
authorPanu Matilainen <pmatilai@redhat.com>
Thu, 24 Sep 2015 07:50:59 +0000 (10:50 +0300)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 4 Dec 2015 15:30:08 +0000 (16:30 +0100)
The validator attempts to disable all kernel modules but since
commit 36080ff96b0eb37a6da8c4fec1a2f8a57dfadf5b fails to do so
for KNI, causing the build stage to fail if kernel headers are missing.

With the introduction of CONFIG_RTE_KNI_KMOD, CONFIG_RTE_LIBRTE_KNI=n
can eventually be dropped but leaving it around for now as its
needed with pre-2.1 versions.

Fixes: 36080ff96b0e ("config: add KNI kmod option")

Signed-off-by: Panu Matilainen <pmatilai@redhat.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
scripts/validate-abi.sh

index 12946d4..cbf9d7f 100755 (executable)
@@ -88,6 +88,7 @@ fixup_config() {
        sed -i -e"$ a\CONFIG_RTE_NEXT_ABI=n" config/defconfig_$TARGET
        sed -i -e"$ a\CONFIG_RTE_EAL_IGB_UIO=n" config/defconfig_$TARGET
        sed -i -e"$ a\CONFIG_RTE_LIBRTE_KNI=n" config/defconfig_$TARGET
+       sed -i -e"$ a\CONFIG_RTE_KNI_KMOD=n" config/defconfig_$TARGET
 }
 
 ###########################################