From f585d7fd68c869973a9139bf629bfc8bfdf5d51f Mon Sep 17 00:00:00 2001 From: Rob Emery Date: Thu, 3 Oct 2019 00:00:17 +0100 Subject: [PATCH] Previously these files end up in /slax/EFI/boot; we need in /EFI/boot --- Slax/debian/bootfiles/bootinst.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Slax/debian/bootfiles/bootinst.sh b/Slax/debian/bootfiles/bootinst.sh index 18c9943..7ec48d0 100644 --- a/Slax/debian/bootfiles/bootinst.sh +++ b/Slax/debian/bootfiles/bootinst.sh @@ -149,8 +149,8 @@ if [ "$DEV" != "$PART" ]; then fi # UEFI boot loader -mkdir -p "EFI/Boot" -cp "slax/boot/EFI/Boot/*" "EFI/Boot" +mkdir -p "$BOOT/../../EFI" +mv "EFI/Boot" "$BOOT/../../EFI/" echo "Boot installation finished." echo "Press Enter..."