From 9017d99f8dc67883c03a13e6c96c9a3e48d0c7f5 Mon Sep 17 00:00:00 2001 From: xumia <59720581+xumia@users.noreply.github.com> Date: Thu, 21 Oct 2021 09:53:54 +0800 Subject: [PATCH] Fix the option missing in kernel config issue (#1888) What I did Fix the option missing in kernel config issue The installing module step will hang forever before the issue fixed. --- .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