From fdc2fe309e7d61a2854ea34118e1178b621008dc Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Sun, 7 Jun 2020 08:20:55 +0200 Subject: [PATCH] Cosmetics: install_system_image(): remove FDE msg Full disk encryption (--fde) has not been the default for a long time, so no need to warn the user about it. --- pmb/install/_install.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pmb/install/_install.py b/pmb/install/_install.py index 469a6239..b486e90c 100644 --- a/pmb/install/_install.py +++ b/pmb/install/_install.py @@ -383,14 +383,6 @@ def install_system_image(args, size_reserve=0): root_id = 3 if size_reserve else 2 pmb.install.partitions_mount(args, root_id) - if args.full_disk_encryption: - logging.info("WARNING: Full disk encryption is enabled!") - logging.info("Make sure that osk-sdl has been properly configured for your device") - logging.info("or else you will be unable to unlock the rootfs on boot!") - logging.info("If you started a device port, it is recommended you disable") - logging.info("FDE by re-running the install command without '--fde' until") - logging.info("you have properly configured osk-sdl. More information:") - logging.info("") pmb.install.format(args, size_reserve) # Just copy all the files