From 85bdf54ef5507a18a10b317b1809c92a3dcfb34f Mon Sep 17 00:00:00 2001 From: xumia <59720581+xumia@users.noreply.github.com> Date: Wed, 20 Oct 2021 16:55:52 +0800 Subject: [PATCH] Fix the option missing in kernel config issue (#1973) What I did Fix the option missing in kernel config issue --- .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 7f8cc23645c5..493a2f04e287 100755 --- a/.azure-pipelines/build_and_install_module.sh +++ b/.azure-pipelines/build_and_install_module.sh @@ -50,6 +50,7 @@ function build_and_install_kmodule() echo CONFIG_MACSEC=m >> .config echo CONFIG_NET_VENDOR_MICROSOFT=y >> .config echo CONFIG_MICROSOFT_MANA=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