Skip to content

Commit 57dc403

Browse files
authored
[ci]: Fix config prompt question issue (#1693)
When run "make modules_prepare", it prompts an ask as below: Microsoft Network Devices (NET_VENDOR_MICROSOFT) [Y/n/?] (NEW) It should be caused by the new version of the kernel config mis-match with existing one. To fix it, add the CONFIG_NET_VENDOR_MICROSOFT and CONFIG_MICROSOFT_MANA settings in the .config file.
1 parent 5708497 commit 57dc403

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.azure-pipelines/build_and_install_module.sh

+2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ function build_and_install_kmodule()
4848
grep NET_TEAM .config.bk >> .config
4949
echo CONFIG_NET_VRF=m >> .config
5050
echo CONFIG_MACSEC=m >> .config
51+
echo CONFIG_NET_VENDOR_MICROSOFT=y >> .config
52+
echo CONFIG_MICROSOFT_MANA=m >> .config
5153
make VERSION=$VERSION PATCHLEVEL=$PATCHLEVEL SUBLEVEL=$SUBLEVEL EXTRAVERSION=-${EXTRAVERSION} LOCALVERSION=-${LOCALVERSION} modules_prepare
5254
make M=drivers/net/team
5355
mv drivers/net/Makefile drivers/net/Makefile.bak

0 commit comments

Comments
 (0)