From 800e10cba3fd212882c77bf7b411b56d8e31da8c Mon Sep 17 00:00:00 2001 From: codefiles <11915375+codefiles@users.noreply.github.com> Date: Sat, 5 Aug 2023 22:53:17 -0400 Subject: [PATCH] Fix encryption debug message in `_add_efistub_bootloader()` --- archinstall/lib/installer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index ba57a001c9..373be1d015 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -1056,10 +1056,10 @@ def _add_efistub_bootloader( if root_partition in self._disk_encryption.partitions: # TODO: We need to detect if the encrypted device is a whole disk encryption, # or simply a partition encryption. Right now we assume it's a partition (and we always have) - debug(f'Identifying root partition by PARTUUID: {root_partition.partuuid}') + debug(f'Root partition is an encrypted device identifying by PARTUUID: {root_partition.partuuid}') kernel_parameters.append(f'cryptdevice=PARTUUID={root_partition.partuuid}:luksdev root=/dev/mapper/luksdev rw rootfstype={root_partition.safe_fs_type.value} {" ".join(self._kernel_params)}') else: - debug(f'Root partition is an encrypted device identifying by PARTUUID: {root_partition.partuuid}') + debug(f'Identifying root partition by PARTUUID: {root_partition.partuuid}') kernel_parameters.append(f'root=PARTUUID={root_partition.partuuid} rw rootfstype={root_partition.safe_fs_type.value} {" ".join(self._kernel_params)}') device = disk.device_handler.get_device_by_partition_path(boot_partition.safe_dev_path)