From 58576cbdb49dfbda944a59b3fd8f867fa3c1ae77 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Wed, 4 Sep 2024 00:24:03 -0700 Subject: [PATCH] Use FAT32 for all UFD partitions This breaks macOS images but those are deprecated at this point. --- scripts/wk/kit/ufd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/wk/kit/ufd.py b/scripts/wk/kit/ufd.py index 76ed2520..66a3b7f6 100644 --- a/scripts/wk/kit/ufd.py +++ b/scripts/wk/kit/ufd.py @@ -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