From 2562d23242c53f128182c18ebd39129b9fcf9233 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Tue, 16 Jan 2024 11:53:52 +0100 Subject: [PATCH] runtime: makefile: remove TDX 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 8a75ddd58e..dab5ce08b6 100644 --- a/src/runtime/Makefile +++ b/src/runtime/Makefile @@ -382,10 +382,6 @@ ifneq (,$(QEMUCMD)) KERNELSEVNAME = $(call MAKE_KERNEL_SEV_NAME,$(KERNELSEVTYPE)) KERNELSEVPATH = $(KERNELDIR)/$(KERNELSEVNAME) - KERNELTDXTYPE = compressed - KERNELTDXNAME = $(call MAKE_KERNEL_TDX_NAME,$(KERNELTDXTYPE)) - KERNELTDXPATH = $(KERNELDIR)/$(KERNELTDXNAME) - KERNELSNPTYPE = compressed KERNELSNPNAME = $(call MAKE_KERNEL_SNP_NAME,$(KERNELSNPTYPE)) KERNELSNPPATH = $(KERNELDIR)/$(KERNELSNPNAME) @@ -591,7 +587,6 @@ USER_VARS += KERNELPATH_ACRN USER_VARS += KERNELPATH USER_VARS += KERNELCONFIDENTIALPATH USER_VARS += KERNELSEVPATH -USER_VARS += KERNELTDXPATH USER_VARS += KERNELSNPPATH USER_VARS += KERNELSEPATH USER_VARS += KERNELPATH_CLH @@ -782,10 +777,6 @@ define MAKE_KERNEL_SEV_NAME $(if $(findstring uncompressed,$1),vmlinux-sev.container,vmlinuz-sev.container) endef -define MAKE_KERNEL_TDX_NAME -$(if $(findstring uncompressed,$1),vmlinux-tdx.container,vmlinuz-tdx.container) -endef - # SNP configuration uses the SEV kernel define MAKE_KERNEL_SNP_NAME $(if $(findstring uncompressed,$1),vmlinux-sev.container,vmlinuz-sev.container)