From 4ceb8d4a43f52c5263297eda136788e77e0c916a Mon Sep 17 00:00:00 2001 From: Amelia Coutard Date: Mon, 10 Oct 2022 16:10:46 +0200 Subject: [PATCH] Added -no-reboot to qemu options --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 934c007..63b12d6 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ CRTN_OBJ := $(OUT_DIR)crtn.S.o build: $(OUT_DIR)amycros.iso qemu: build - qemu-system-x86_64 -cdrom $(OUT_DIR)amycros.iso -serial stdio -cpu qemu64,pdpe1gb $(QEMUFLAGS) + qemu-system-x86_64 -cdrom $(OUT_DIR)amycros.iso -serial stdio -cpu qemu64,pdpe1gb -no-reboot $(QEMUFLAGS) $(OUT_DIR)amycros.iso: $(OUT_DIR)kernel.elf64 grub.cfg mkdir -p isodir/boot/grub -- 2.47.0