1
0
Fork 0
EttinOS/make.sh

15 lines
288 B
Bash
Raw Normal View History

2021-05-26 14:05:49 +00:00
#!/bin/bash
cd SOURCE/
nasm BOOT.ASM -f bin -O0 -o ../BOOT.BIN
nasm SYSTEM.ASM -f bin -O0 -o ../SYSTEM.BIN
2021-06-02 10:18:59 +00:00
cd ..
if [[ -f EttinOS.img ]]
then
rm EttinOS.img
fi
mkfs.fat -C EttinOS.img 1440
mcopy -i EttinOS.img SYSTEM.BIN ::
dd if=BOOT.BIN of=EttinOS.img conv=notrunc bs=512 count=1