From 728fee4a7caa9cf12bcd307370b7a05b404ac1d3 Mon Sep 17 00:00:00 2001 From: codefiles <11915375+codefiles@users.noreply.github.com> Date: Wed, 28 May 2025 08:02:00 -0400 Subject: [PATCH] Fix root partition device mapper name (#3524) --- archinstall/lib/models/device_model.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/archinstall/lib/models/device_model.py b/archinstall/lib/models/device_model.py index 34e9bddd..176ab098 100644 --- a/archinstall/lib/models/device_model.py +++ b/archinstall/lib/models/device_model.py @@ -1010,6 +1010,8 @@ class PartitionModification: @property def mapper_name(self) -> str | None: + if self.is_root(): + return 'root' if self.is_home(): return 'home' if self.dev_path: