EttinOS/make.sh

12 lines
247 B
Bash
Raw Normal View History

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