From 4e9972fb50ffe0f26353cc41b6f270416053c1f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 24 Aug 2022 21:56:48 +0200 Subject: [PATCH] config: Drop `force_tdx_guest` unneeded parameter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `force_tdx_guest` kernel parameter was only needed in the early development stages of the TDX kernel driver. We can safely drop it with the kernel version we've been currently using. Fixes: #4985 Signed-off-by: Fabiano FidĂȘncio --- src/runtime/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/Makefile b/src/runtime/Makefile index 6a4f87c9ff..1874020846 100644 --- a/src/runtime/Makefile +++ b/src/runtime/Makefile @@ -115,7 +115,7 @@ FIRMWAREPATH := FIRMWAREVOLUMEPATH := TDVFFIRMWAREPATH := $(PREFIXDEPS)/share/tdvf/OVMF_CODE.fd TDVFFIRMWAREVOLUMEPATH := $(PREFIXDEPS)/share/tdvf/OVMF_VARS.fd -TDXKERNELPARAMS := force_tdx_guest tdx_disable_filter +TDXKERNELPARAMS := tdx_disable_filter # Name of default configuration file the runtime will use. CONFIG_FILE = configuration.toml