diff options
author | dzwdz | 2021-10-06 22:15:02 +0200 |
---|---|---|
committer | dzwdz | 2021-10-06 22:15:02 +0200 |
commit | 7e326b5039bff4d422f66bb8e51267f785193985 (patch) | |
tree | 2f991615c4a06ba6c3f0c90d5da896f2b058aafe /Makefile | |
parent | 0cd25153a0556b988959c10c5ecab04cbacc9506 (diff) |
kernel/i386: implement part of ATA IDENTIFY
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 & |