From 123f5f2aadaf19dbc3c61cf0e9b275dc27f256e6 Mon Sep 17 00:00:00 2001 From: TommyTran732 <57488583+tommytran732@users.noreply.github.com> Date: Sat, 24 Apr 2021 04:44:59 -0400 Subject: [PATCH] Set proper ESP flag Without this flag it will be marked as basic data, which could cause issue when dual booting --- easy-arch.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/easy-arch.sh b/easy-arch.sh index 1891db5..e688e6b 100644 --- a/easy-arch.sh +++ b/easy-arch.sh @@ -61,6 +61,7 @@ echo "Creating new partition scheme on $DISK." parted -s "$DISK" \ mklabel gpt \ mkpart ESP fat32 1MiB 101MiB \ + set 1 esp on \ mkpart Cryptroot 101MiB 100% \ ESP="/dev/disk/by-partlabel/ESP"