From 41215741f0f8da3f9300cc5c968bf8e603626282 Mon Sep 17 00:00:00 2001 From: codefiles <11915375+codefiles@users.noreply.github.com> Date: Mon, 13 Jan 2025 22:23:25 -0500 Subject: [PATCH] disk: add udev sync after partitioning (#3119) --- archinstall/lib/disk/filesystem.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/archinstall/lib/disk/filesystem.py b/archinstall/lib/disk/filesystem.py index 874c41ae53..21de291502 100644 --- a/archinstall/lib/disk/filesystem.py +++ b/archinstall/lib/disk/filesystem.py @@ -73,6 +73,8 @@ def perform_filesystem_operations(self, show_countdown: bool = True) -> None: for mod in device_mods: device_handler.partition(mod, partition_table=partition_table) + device_handler.udev_sync() + if self._disk_config.lvm_config: for mod in device_mods: if boot_part := mod.get_boot_partition():