From 0269925bf43fa9ae37757382c5bded85d85fe344 Mon Sep 17 00:00:00 2001 From: Jack Halford Date: Mon, 6 Jan 2020 19:38:33 +0100 Subject: [PATCH] qemu.sh: fix suicide --- qemu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu.sh b/qemu.sh index 3ddb385..8330869 100755 --- a/qemu.sh +++ b/qemu.sh @@ -7,7 +7,7 @@ KERNEL=build/kernel start() { touch disk.img - sudo pkill -9 qemu + sudo pkill -9 qemu-system-i386 sudo qemu-system-i386 \ -gdb tcp::${QEMU_GDB_PORT} \ -monitor unix:${QEMU_SOCKET},server,nowait \