From 0a9500e657e5d467ab5c774a3c291f0ee26817e5 Mon Sep 17 00:00:00 2001 From: Hal Emmerich Date: Wed, 9 Oct 2019 00:39:56 -0500 Subject: [PATCH] Add more information to crypto setup script --- scripts/InstallScripts/InstallToInternal.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/InstallScripts/InstallToInternal.sh b/scripts/InstallScripts/InstallToInternal.sh index 4f9d979..5d1b6cf 100755 --- a/scripts/InstallScripts/InstallToInternal.sh +++ b/scripts/InstallScripts/InstallToInternal.sh @@ -91,8 +91,9 @@ then CRYPTO=true # Since iteration count is based on cpu power, and the rk3288 isn't as fast as a usual # desktop cpu, manually supply -i 15000 for security at the cost of a slightly slower unlock + echo "Now enter the password you would like to use to unlock the encrypted root partition at boot" cryptsetup -q -y -s 512 luksFormat -i 15000 /dev/$ROOT_DEV_NAME - echo "Now unlock the newly created encrypted partition so we can mount it and install the filesystem" + echo "Now unlock the newly created encrypted root partition so we can mount it and install the filesystem" cryptsetup luksOpen /dev/$ROOT_DEV_NAME luksroot || exit 1 ROOT_DEV_NAME=mapper/luksroot #set the root encryption flag