25 lines
848 B
Diff
25 lines
848 B
Diff
|
commit d58ebcc32b583371dd73ab7f4c7be5191674ca62
|
||
|
Author: Tomas Bzatek <tbzatek@redhat.com>
|
||
|
Date: Wed Mar 17 18:52:22 2021 +0100
|
||
|
|
||
|
udiskslinuxblock: Re-read partition table after creating FAT filesystem
|
||
|
|
||
|
Might not be needed after reverting mkfs.vfat behaviour back
|
||
|
to the legacy way, added just as a precautionary measure.
|
||
|
|
||
|
diff --git a/src/udiskslinuxblock.c b/src/udiskslinuxblock.c
|
||
|
index 901426ad..69161b61 100644
|
||
|
--- a/src/udiskslinuxblock.c
|
||
|
+++ b/src/udiskslinuxblock.c
|
||
|
@@ -2913,7 +2913,9 @@ static inline gboolean
|
||
|
need_partprobe_after_mkfs (const gchar *fs_type)
|
||
|
{
|
||
|
/* udftools makes fake MBR since the 2.0 release */
|
||
|
- return (g_strcmp0 (fs_type, "udf") == 0);
|
||
|
+ /* dosfstools makes fake MBR since the 4.2 release */
|
||
|
+ return (g_strcmp0 (fs_type, "udf") == 0 ||
|
||
|
+ g_strcmp0 (fs_type, "vfat") == 0);
|
||
|
}
|
||
|
|
||
|
void
|