diff --git a/.gitignore b/.gitignore index dd25b75..a08ac6a 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ target/ kernel8* .gdb_history +qemu.log diff --git a/Makefile.toml b/Makefile.toml index 28d0228..b71e47c 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -103,7 +103,8 @@ dependencies = ["build-qemu", "kernel-binary"] env = { "TARGET_FEATURES" = "${QEMU_FEATURES}" } script = [ "echo Run QEMU ${QEMU_OPTS} ${QEMU_RUNNER_OPTS} with ${KERNEL_BIN}", - "${QEMU} ${QEMU_OPTS} ${QEMU_RUNNER_OPTS} -dtb ${TARGET_DTB} -kernel ${KERNEL_BIN}" + "rm -f qemu.log", + "${QEMU} ${QEMU_OPTS} ${QEMU_RUNNER_OPTS} -dtb ${TARGET_DTB} -kernel ${KERNEL_BIN} 2>&1 | tee qemu.log" ] [tasks.expand]