Enforce 2048 byte clusters and alignment in FAT to ensure mappability to ISO

This commit is contained in:
K. Lange 2018-08-15 19:45:49 +09:00
parent b60381b763
commit d0023c387a

View File

@ -8,7 +8,7 @@ OUTDIR=`dirname $1`
rm -f $OUT
mkdir -p cdrom
fallocate -l 64M $OUT || dd if=/dev/zero bs=1M count=64 of=$OUT
mkfs.fat $OUT
mkfs.fat -s 1 -S 2048 $OUT
#echo "Turning $IN into $OUT"