Prevented Qemu from auto-shutdown in debug mode.

This commit is contained in:
neviyn 2017-11-21 19:19:45 +00:00
parent 473ae8fad1
commit 5cefd5d2b8

View File

@ -41,7 +41,7 @@ task "checkMultiboot", "Checks the grub multiboot header.":
task "debug", "Runs the operating system using QEMU with debug build and flags.": task "debug", "Runs the operating system using QEMU with debug build and flags.":
runTask("build") runTask("build")
echo "Running in Qemu." echo "Running in Qemu."
direShell "qemu-system-i386 -kernel", outputFile ,"-serial stdio -no-reboot -d int,cpu_reset" direShell "qemu-system-i386 -kernel", outputFile ,"-serial stdio -no-reboot -no-shutdown -d int,cpu_reset"
task "run", "Runs the operating system using QEMU.": task "run", "Runs the operating system using QEMU.":
runTask("build-release") runTask("build-release")