From 372dd5126435842c143a89c739620f56a2abbd3a Mon Sep 17 00:00:00 2001 From: thebigbone Date: Mon, 17 Mar 2025 19:20:57 +0530 Subject: [PATCH] add -nographic flag for x86_64 arch --- build_library/qemu_template.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_library/qemu_template.sh b/build_library/qemu_template.sh index 4e2d5266f3d..3fca4b1e8de 100755 --- a/build_library/qemu_template.sh +++ b/build_library/qemu_template.sh @@ -228,7 +228,7 @@ else -global driver=cfi.pflash01,property=secure,value=on \ "$@" # Emulate the host CPU closely in both features and cores. - set -- -machine q35,accel=kvm:hvf:tcg,smm=on -cpu host -smp "${VM_NCPUS}" "$@" + set -- -machine q35,accel=kvm:hvf:tcg,smm=on -cpu host -smp "${VM_NCPUS}" -nographic "$@" ;; amd64-usr+*) set -- -machine q35 -cpu kvm64 -smp 1 -nographic "$@" ;;