From 6e9a120e0ce2a873cc5e343e45229a993b997ff5 Mon Sep 17 00:00:00 2001 From: Amelia Coutard Date: Thu, 5 May 2022 14:11:05 +0200 Subject: [PATCH] Updated Makefile qemu command (added stdio serial) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d88f6b4..995e208 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ OBJECTS := $(CPPOBJS) $(ASMOBJS) build: $(OUT_DIR)amycros.iso qemu: build - qemu-system-x86_64 -cdrom $(OUT_DIR)amycros.iso -monitor stdio -cpu qemu64,pdpe1gb $(QEMUFLAGS) + qemu-system-x86_64 -cdrom $(OUT_DIR)amycros.iso -serial stdio -cpu qemu64,pdpe1gb $(QEMUFLAGS) $(OUT_DIR)amycros.iso: $(OUT_DIR)kernel.elf64 grub.cfg mkdir -p isodir/boot/grub -- 2.47.0