Use FAT32 for all UFD partitions

This breaks macOS images but those are deprecated at this point.
This commit is contained in:
2Shirt 2024-09-04 00:24:03 -07:00
parent a3a7b25512
commit 58576cbdb4
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -350,7 +350,7 @@ def create_table(dev_path, use_mbr=False, images=None) -> None:
for part, real in zip(part_sizes, images):
end = start + real
cmd.append(
f'mkpart primary {"fat32" if start==MIB else "hfs+"} {start}B {end-1}B',
f'mkpart primary "fat32" {start}B {end-1}B',
)
start += part