diff options
author | Marvin Borner | 2019-12-05 21:37:36 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-05 21:37:36 +0100 |
commit | 322167ceab19588473f9074e761390fdeb701790 (patch) | |
tree | 258e7cbdb13e8e0969b3014ce39511a66c3d3da2 | |
parent | c08ced39ae86d645de4317fdb53c623990bc36f1 (diff) |
Added manual installation method
-rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -86,6 +86,13 @@ debug: @echo "[SERIAL OUTPUT]" @qemu-system-x86_64 ${QEMU_OPTIONS} -cdrom ./build/melvix.iso -drive file=./build/hdd10M.img,format=raw @echo "[END OF CONNECTION]" + +image: build + @echo "Starting simulation..." + @head -c 10485760 /dev/zero > ./build/hdd10M.img + @echo "[SERIAL OUTPUT]" + @qemu-system-x86_64 ${QEMU_OPTIONS} -cdrom ./build/melvix.iso -drive file=./build/hdd10M.img,format=raw + @echo "[END OF CONNECTION]" @printf "\n" @echo "[SERIAL OUTPUT]" @qemu-system-x86_64 ${QEMU_OPTIONS} -drive file=./build/hdd10M.img,format=raw @@ -105,4 +112,4 @@ bochs: build bochsHDD: @bochs -f bochs.txt -.PHONY: build clean cross test debug debugHDD bochs bochsHDD
\ No newline at end of file +.PHONY: build clean cross test debug image debugHDD bochs bochsHDD
\ No newline at end of file |