From 33bac9a6b6bbc90bf31d4502270685039256f9e5 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Fri, 9 Sep 2022 16:27:27 +0000 Subject: [PATCH] ESP --- README.md | 2 +- install.sh | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ea603f5..e29351e 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ The following will happen: - Clear partition table for `/dev/***`. - Creates a GPT partition table for `/dev/***`. -- Create a +512M EFI partiton at `/dev/***1`. +- Create a 1GB EFI partiton at `/dev/***1`. - Create a encrypted LVM at `/dev/***2`. - Create a swap partition in the LVM and sets it as the same size as the RAM for hibernation if requested. - Create a root partition in the LVM. diff --git a/install.sh b/install.sh index 3bde713..716dc97 100644 --- a/install.sh +++ b/install.sh @@ -17,10 +17,11 @@ echo g # Create new GPT partition table echo n # Create new partition (for EFI). echo # Set default partition number. echo # Set default first sector. -echo +512M # Set +512M as last sector. +echo +1G # Set +1G as last sector. echo n # Create new partition (for root). echo # Set default partition number. echo # Set default first sector. +echo # Set last sector. echo n # Create new partition (for swap). echo # Set default partition number. echo # Set default first sector.