From 635881cf374011a563c7d08fec25a1b7c6e67ed8 Mon Sep 17 00:00:00 2001 From: xumia <59720581+xumia@users.noreply.github.com> Date: Thu, 21 Oct 2021 14:06:09 +0800 Subject: [PATCH] Fix the option missing in kernel config issue (#956) --- .azure-pipelines/build_and_install_module.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.azure-pipelines/build_and_install_module.sh b/.azure-pipelines/build_and_install_module.sh index 4bd026cb5259..c8cb9d51f3fe 100755 --- a/.azure-pipelines/build_and_install_module.sh +++ b/.azure-pipelines/build_and_install_module.sh @@ -48,6 +48,7 @@ function build_and_install_kmodule() grep NET_TEAM .config.bk >> .config echo CONFIG_NET_VRF=m >> .config echo CONFIG_MACSEC=m >> .config + echo CONFIG_SYSTEM_REVOCATION_LIST=n >> .config make VERSION=$VERSION PATCHLEVEL=$PATCHLEVEL SUBLEVEL=$SUBLEVEL EXTRAVERSION=-${EXTRAVERSION} LOCALVERSION=-${LOCALVERSION} modules_prepare make M=drivers/net/team mv drivers/net/Makefile drivers/net/Makefile.bak