From 87899b0a6797dffa0cd8925cf3016bf3d1b64def Mon Sep 17 00:00:00 2001 From: Tommaso Chiti Date: Sat, 8 May 2021 08:35:13 +0200 Subject: [PATCH] LUKS 2 support --- easy-arch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easy-arch.sh b/easy-arch.sh index d313bba..66bc144 100644 --- a/easy-arch.sh +++ b/easy-arch.sh @@ -60,9 +60,9 @@ fi echo "Creating new partition scheme on $DISK." parted -s "$DISK" \ mklabel gpt \ - mkpart ESP fat32 1MiB 513MiB \ + mkpart ESP fat32 1MiB 101MiB \ set 1 esp on \ - mkpart Cryptroot 513MiB 100% \ + mkpart Cryptroot 101MiB 100% \ ESP="/dev/disk/by-partlabel/ESP" Cryptroot="/dev/disk/by-partlabel/Cryptroot"