From 1134bef149024617bfe6cec1ee90d3e178040851 Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Wed, 3 Mar 2021 09:29:43 -0500 Subject: [PATCH] Fix: system-tests: kvmconfig is deprecated Starting in 5.11 with commit: commit 9bba03d4473df0b707224d4d2067b62d1e1e2a77 Author: Masahiro Yamada Date: Wed Dec 23 15:35:42 2020 +0900 kconfig: remove 'kvmconfig' and 'xenconfig' shorthands Linux 5.10 is out. Remove the 'kvmconfig' and 'xenconfig' shorthands as previously announced. Signed-off-by: Masahiro Yamada Signed-off-by: Jonathan Rajotte --- scripts/system-tests/check-build-needs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/system-tests/check-build-needs.sh b/scripts/system-tests/check-build-needs.sh index cf51ab2..0c82007 100644 --- a/scripts/system-tests/check-build-needs.sh +++ b/scripts/system-tests/check-build-needs.sh @@ -61,7 +61,7 @@ if [ $NEED_MODULES_BUILD -eq 1 ] || [ $NEED_KERNEL_BUILD -eq 1 ] ; then make --directory="$LINUX_PATH" olddefconfig if [ $BUILD_DEVICE = 'kvm' ] ; then - make --directory="$LINUX_PATH" kvmconfig + make --directory="$LINUX_PATH" kvm_guest.config fi make --directory="$LINUX_PATH" modules_prepare -- 2.34.1