From 69364ba1769b366b614b27db53bc8c6433b2246a Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Thu, 25 Jan 2024 15:22:03 +0100 Subject: [PATCH] Only enable -d cpu_reset for qemu when debugging It is only useful when debugging and otherwise just throws a whole bunch of logs on every boot. --- mk/qemu.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mk/qemu.mk b/mk/qemu.mk index ef56fe1..46a6bb3 100644 --- a/mk/qemu.mk +++ b/mk/qemu.mk @@ -1,5 +1,5 @@ QEMU=SDL_VIDEO_X11_DGAMOUSE=0 qemu-system-$(QEMU_ARCH) -QEMUFLAGS=-d cpu_reset,guest_errors -name "Redox OS $(ARCH)" +QEMUFLAGS=-d guest_errors -name "Redox OS $(ARCH)" ifeq ($(ARCH),i686) audio?=ac97 @@ -121,7 +121,7 @@ ifneq ($(usb),no) endif ifeq ($(gdb),yes) - QEMUFLAGS+=-s -S + QEMUFLAGS+=-d cpu_reset -s -S endif ifeq ($(UNAME),Linux)