From 6100ed584939ec2095d719e82c8363e01f5a04c1 Mon Sep 17 00:00:00 2001 From: Panu Matilainen Date: Thu, 24 Sep 2015 10:50:59 +0300 Subject: [PATCH] scripts: fix ABI validator for KNI module config 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 Acked-by: Neil Horman --- scripts/validate-abi.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/validate-abi.sh b/scripts/validate-abi.sh index 12946d4b83..cbf9d7f11c 100755 --- a/scripts/validate-abi.sh +++ b/scripts/validate-abi.sh @@ -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 } ########################################### -- 2.20.1