fix: wrong efi folder

pull/75/head
Cabia Rangris 2019-07-17 22:13:08 +03:00
parent b71babf0bc
commit 03f722b881
1 changed files with 2 additions and 2 deletions

View File

@ -41,11 +41,11 @@ if [ "$DEV" != "$PART" ]; then
fi fi
# Now to be able to boot from most of UEFI devices # Now to be able to boot from most of UEFI devices
EFIDIR="$BOOT/EFI/efi/boot" EFIDIR="$BOOT/EFI/boot"
mkdir -p "$EFIDIR" mkdir -p "$EFIDIR"
cp efi-files/* "$EFIDIR" cp efi-files/* "$EFIDIR"
# I didn't renamed the binary in place so it could be updated more easily # I didn't rename the binary in place so it could be updated more easily
mv "$EFIDIR/syslinux.efi" "$EFIDIR/bootx64.efi" mv "$EFIDIR/syslinux.efi" "$EFIDIR/bootx64.efi"
echo "Boot installation finished." echo "Boot installation finished."