1
0
mirror of https://github.com/tommytran732/Arch-Setup-Script synced 2024-09-19 15:14:43 -04:00

Set proper ESP flag

This commit is contained in:
TommyTran732 2021-04-24 04:47:49 -04:00 committed by tommytran732
parent d3e5b01a4c
commit 71683b8782
No known key found for this signature in database
GPG Key ID: 060B29EB996BD9F2

View File

@ -61,6 +61,7 @@ echo "Creating new partition scheme on $DISK."
parted -s "$DISK" \ parted -s "$DISK" \
mklabel gpt \ mklabel gpt \
mkpart ESP fat32 1MiB 101MiB \ mkpart ESP fat32 1MiB 101MiB \
set 1 esp on \
mkpart cryptroot 101MiB 100% \ mkpart cryptroot 101MiB 100% \
ESP="/dev/disk/by-partlabel/ESP" ESP="/dev/disk/by-partlabel/ESP"