From 317c1d943f0e6b0d156892554be9959b6fd38f42 Mon Sep 17 00:00:00 2001 From: Joaquin Date: Sat, 15 Apr 2023 19:34:17 +0300 Subject: [PATCH] [EFI] Fix efi part mount --- install | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install b/install index ea50d5a..bb8919a 100755 --- a/install +++ b/install @@ -30,8 +30,9 @@ mkswap /dev/$pswap swapon /dev/$pswap pefi=$(whiptail --title "Select the partiton to install EFI to:" --menu "Select the partiton to install EFI to (no disk if you have legacy bios):" 16 78 10 "${parts[@]}" 3>&1 1>&2 2>&3 3>&-) mkdir /mnt/boot +mkdir /mnt/boot/EFI mkfs.fat -F32 /dev/$pefi -mount /dev/$pefi /mnt/boot +mount /dev/$pefi /mnt/boot/EFI extraparts=$(whiptail --inputbox "If you want to mount any other partition manually, enter the commands here like this: command 1 ; command 2 ; command 3" 0 0 0 3>&1 1>&2 2>&3 3>&-) echo $extraparts > coms bash coms