From 04f04dd78091903110310c704cd862317a6a10f6 Mon Sep 17 00:00:00 2001 From: Mats van Reenen Date: Fri, 9 Sep 2022 20:57:38 +0200 Subject: [PATCH] fix boot partition --- arch-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch-install.sh b/arch-install.sh index 747a220..55f68ab 100644 --- a/arch-install.sh +++ b/arch-install.sh @@ -101,8 +101,8 @@ run "create root btrfs subvolume" "btrfs subvolume create /mnt/@" run "create home btrfs subvolume" "btrfs subvolume create /mnt/@home" run "unmount btrfs" "umount /mnt" run "mount root subvolume" "mount -o subvol=@ /dev/mapper/cryptroot /mnt" -run "make root directorys" "mkdir -p /mnt/root /mnt/home" -run "mount boot partition" "mount ${DISK}1 /mnt/root" +run "make root directorys" "mkdir -p /mnt/boot/efi /mnt/home" +run "mount boot partition" "mount ${DISK}1 /mnt/boot/efi" run "mount home subvolume" "mount -o subvol=@home /dev/mapper/cryptroot /mnt/home" run "enable swap" "swapon ${DISK}2"