Enforce 2048 byte clusters and alignment in FAT to ensure mappability to ISO
This commit is contained in:
parent
b60381b763
commit
d0023c387a
@ -8,7 +8,7 @@ OUTDIR=`dirname $1`
|
|||||||
rm -f $OUT
|
rm -f $OUT
|
||||||
mkdir -p cdrom
|
mkdir -p cdrom
|
||||||
fallocate -l 64M $OUT || dd if=/dev/zero bs=1M count=64 of=$OUT
|
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"
|
#echo "Turning $IN into $OUT"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user