From 52f6449b7001a0853cf76208fdb7cf90c31c5739 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Mon, 11 Sep 2023 09:28:07 +0100 Subject: [PATCH] kata-manager: Remove initcall_debug kernel option Removed the addition of the `initcall_debug` kernel option when agent debugging enabled. This option has nothing to do with the agent. If the user wishes to use this option, they can add it to the `kernel_params=` setting in the Kata configuration file's hypervisor stanza. Signed-off-by: James O. D. Hunt --- utils/kata-manager.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/kata-manager.sh b/utils/kata-manager.sh index 249a510fa3..1dfc369f3f 100755 --- a/utils/kata-manager.sh +++ b/utils/kata-manager.sh @@ -593,7 +593,7 @@ configure_kata() sudo sed -i \ -e 's/^# *\(enable_debug\).*=.*$/\1 = true/g' \ - -e 's/^kernel_params = "\(.*\)"/kernel_params = "\1 agent.log=debug initcall_debug"/g' \ + -e 's/^kernel_params = "\(.*\)"/kernel_params = "\1 agent.log=debug"/g' \ "$cfg_to" info "Configured $kata_project for full debug (delete $cfg_to to use pristine $kata_project configuration)"