From ee9acef4730741cdc7e374395077a92b920c9583 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Thu, 26 Aug 2021 13:12:38 +0300 Subject: [PATCH] Use mkfs.fat instead of mkdosfs for better portability --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0b0d566..fbb0f23 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ ordos.img: BOOT.BIN IO.SYS ORDOS.SYS COMMAND.COM debug.com edlin.com exe2bin.exe link.exe masm.exe rm -f ordos.img - mkdosfs -C $@ -M 0xff 320 + mkfs.fat -C $@ -M 0xff 320 rw -I 0x7c00 -i BOOT.BIN -o $@ -c 512 mcopy -i $@ IO.SYS :: mcopy -i $@ ORDOS.SYS ::