From 57b132f94c53228a13c9c05cb87c99a0ec02f255 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 31 Jan 2024 19:55:04 +0100 Subject: [PATCH] runtime: makefile: remove SEV specific kernel references MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As this is not used anymore, we can go ahead and just remove it Signed-off-by: Fabiano FidĂȘncio --- src/runtime/Makefile | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/runtime/Makefile b/src/runtime/Makefile index dab5ce08b6..69e59766dc 100644 --- a/src/runtime/Makefile +++ b/src/runtime/Makefile @@ -378,10 +378,6 @@ ifneq (,$(QEMUCMD)) KERNELNAME = $(call MAKE_KERNEL_NAME,$(KERNELTYPE)) KERNELPATH = $(KERNELDIR)/$(KERNELNAME) - KERNELSEVTYPE = compressed - KERNELSEVNAME = $(call MAKE_KERNEL_SEV_NAME,$(KERNELSEVTYPE)) - KERNELSEVPATH = $(KERNELDIR)/$(KERNELSEVNAME) - KERNELSNPTYPE = compressed KERNELSNPNAME = $(call MAKE_KERNEL_SNP_NAME,$(KERNELSNPTYPE)) KERNELSNPPATH = $(KERNELDIR)/$(KERNELSNPNAME) @@ -586,7 +582,6 @@ USER_VARS += KERNELTYPE_CLH USER_VARS += KERNELPATH_ACRN USER_VARS += KERNELPATH USER_VARS += KERNELCONFIDENTIALPATH -USER_VARS += KERNELSEVPATH USER_VARS += KERNELSNPPATH USER_VARS += KERNELSEPATH USER_VARS += KERNELPATH_CLH @@ -773,10 +768,6 @@ define MAKE_KERNEL_VIRTIOFS_NAME $(if $(findstring uncompressed,$1),vmlinux-virtiofs.container,vmlinuz-virtiofs.container) endef -define MAKE_KERNEL_SEV_NAME -$(if $(findstring uncompressed,$1),vmlinux-sev.container,vmlinuz-sev.container) -endef - # SNP configuration uses the SEV kernel define MAKE_KERNEL_SNP_NAME $(if $(findstring uncompressed,$1),vmlinux-sev.container,vmlinuz-sev.container)