summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 08bb5d6..7757c25 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,10 @@ endef
all: out/boot.iso check
boot: all
- qemu-system-i386 -cdrom out/boot.iso $(QFLAGS) -no-shutdown
+ touch out/disk # TODO this is temporary
+ qemu-system-i386 -cdrom out/boot.iso $(QFLAGS) -no-shutdown \
+ -drive file=out/disk,format=raw,media=disk
+
debug: all
qemu-system-i386 -cdrom out/boot.iso $(QFLAGS) -s -S &