os3/rawimg/mkimg_macos.sh
2022-09-24 22:30:25 -04:00

6 lines
168 B
Bash

#!/bin/bash
echo "Generating image $1...."
qemu-img create $1 512M
disk_id=$(hdiutil attach -nomount $1)
newfs_msdos -F 32 -v OS3_BOOT $disk_id
hdiutil detach $disk_id