We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23f0c8c commit ae280bbCopy full SHA for ae280bb
1 file changed
archinstall/lib/disk/disk_menu.py
@@ -3,6 +3,7 @@
3
4
from archinstall.lib.disk.encryption_menu import DiskEncryptionMenu
5
from archinstall.lib.models.device_model import (
6
+ DEFAULT_ITER_TIME,
7
BtrfsOptions,
8
DiskEncryption,
9
DiskLayoutConfiguration,
@@ -261,6 +262,9 @@ def _prev_disk_encryption(self, item: MenuItem) -> str | None:
261
262
if enc_config.encryption_password:
263
output += tr('Password') + f': {enc_config.encryption_password.hidden()}\n'
264
265
+ if enc_type != EncryptionType.NoEncryption:
266
+ output += tr('Iteration time') + f': {enc_config.iter_time or DEFAULT_ITER_TIME}ms\n'
267
+
268
if enc_config.partitions:
269
output += f'Partitions: {len(enc_config.partitions)} selected\n'
270
elif enc_config.lvm_volumes:
0 commit comments