Changed EFI partition size

Changed EFI partition size from 512MB to 1GB
This commit is contained in:
Tommaso Chiti 2024-07-17 11:38:26 +02:00 committed by GitHub
parent 953df45676
commit e3ad27d40a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -306,9 +306,9 @@ sgdisk -Zo "$DISK" &>/dev/null
info_print "Creating the partitions on $DISK." info_print "Creating the partitions on $DISK."
parted -s "$DISK" \ parted -s "$DISK" \
mklabel gpt \ mklabel gpt \
mkpart ESP fat32 1MiB 513MiB \ mkpart ESP fat32 1MiB 1025MiB \
set 1 esp on \ set 1 esp on \
mkpart CRYPTROOT 513MiB 100% \ mkpart CRYPTROOT 1025MiB 100% \
ESP="/dev/disk/by-partlabel/ESP" ESP="/dev/disk/by-partlabel/ESP"
CRYPTROOT="/dev/disk/by-partlabel/CRYPTROOT" CRYPTROOT="/dev/disk/by-partlabel/CRYPTROOT"